@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@100;300;400;500;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Shippori+Mincho+B1:wght@400;500;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200;300;400;500;600;700;900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
* li {
  list-style: none;
}
* p {
  margin-bottom: 0.5em;
}
* p:last-child {
  margin-bottom: 0;
}
* img {
  max-width: 100%;
  height: auto;
}
* a {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  color: #111;
  transition: 0.3s;
  text-decoration: none;
}
* a:hover, * a:link, * a:active, * a:focus {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  color: #111;
}
* a:hover {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  opacity: 0.6;
}

body {
  color: #111;
  font-family: "Shippori Mincho B1", serif;
  background: #f5faff;
  line-height: 1.8;
  transition: 0.6s;
}
body.effect {
  background: #e4f1fd;
}

.head_line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -1;
}
.head_line img {
  width: 100%;
}

header.pc {
  width: 100%;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 750px) {
  header.pc {
    padding: 15px 20px;
  }
}
header.pc .logo span {
  display: block;
  font-size: 14px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 750px) {
  header.pc .logo span {
    font-size: 12px;
  }
}
header.pc .logo img {
  width: 200px;
}
@media screen and (max-width: 750px) {
  header.pc .logo img {
    width: 160px;
  }
}
header.pc nav {
  display: flex;
  gap: 10px;
  align-items: center;
}
@media screen and (max-width: 1100px) {
  header.pc .access {
    display: none;
  }
}
header.pc .access a {
  background: #f8fcff;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1;
  height: 65px;
  gap: 2px;
  padding: 0 1em;
}
header.pc .access a img {
  width: 30px;
}
header.pc .access a span {
  font-size: 14px;
}
header.pc .tel {
  line-height: 1;
  text-align: center;
  height: 65px;
  gap: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: #f8fcff;
  padding: 0 20px;
  border-radius: 10px;
}
@media screen and (max-width: 950px) {
  header.pc .tel {
    display: none;
  }
}
header.pc .tel .txt {
  font-size: 13px;
}
header.pc .tel a {
  font-weight: 500;
  font-size: 24px;
  display: flex;
  gap: 0.2em;
  align-items: center;
}
header.pc .tel a img {
  width: 22px;
}
header.pc ul.g_nav {
  display: flex;
}
@media screen and (max-width: 750px) {
  header.pc ul.g_nav {
    display: none;
  }
}
header.pc ul.g_nav li {
  position: relative;
}
header.pc ul.g_nav li a {
  padding: 1em 1em;
  display: block;
  cursor: pointer;
}
header.pc ul.g_nav li a span {
  display: block;
  text-align: center;
  line-height: 1.4;
}
header.pc ul.g_nav li a span:nth-child(1) {
  font-size: 10px;
  color: #a4b3c2;
}
header.pc ul.g_nav li a span:nth-child(2) {
  font-size: 16px;
}
header.pc ul.g_nav li .sub_contents {
  width: 200px;
  background: #fff;
  box-shadow: 5px 5px 40px -20px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  position: absolute;
  top: 4em;
  left: 0;
  opacity: 0;
  transition: 0.2s;
  visibility: hidden;
  z-index: 101;
}
header.pc ul.g_nav li .sub_contents.active {
  top: 4.5em;
  opacity: 1;
  visibility: visible;
}
header.pc ul.g_nav li .sub_contents ul li {
  border-bottom: solid 1px #ddd;
}
header.pc ul.g_nav li .sub_contents ul li:last-child {
  border-bottom: none;
}
header.pc ul.g_nav li .sub_contents ul li a {
  font-size: 14px;
  display: block;
  padding: 0.5em 1em;
  position: relative;
}

header.sp {
  width: 100%;
  position: relative;
}
@media screen and (min-width: 750px) {
  header.sp {
    display: none;
  }
}
header.sp .drawer_bg {
  position: fixed;
  font-size: 100px;
  top: -0.3em;
  right: -0.3em;
  z-index: 100;
  width: 1em;
  height: 1em;
  border-radius: 100%;
  filter: blur(10px);
  z-index: 100;
  transition: 0.7s;
  background: #e5f1fd;
}
header.sp .drawer_bg.active {
  background: #fff;
  font-size: 3000px;
}
@media screen and (max-width: 600px) {
  header.sp .drawer_bg.active {
    font-size: 2500px;
  }
}
header.sp .drawer_btn {
  font-size: 60px;
  width: 1em;
  height: 1em;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: fixed;
  top: 5px;
  right: 5px;
  z-index: 102;
}
@media screen and (max-width: 500px) {
  header.sp .drawer_btn {
    font-size: 50px;
  }
}
header.sp .drawer_btn span,
header.sp .drawer_btn span:after,
header.sp .drawer_btn span:before {
  content: "";
  display: block;
  width: 0.6em;
  height: 1px;
  background: #000;
  position: absolute;
  transition: 0.3s;
}
header.sp .drawer_btn span {
  background: rgba(255, 255, 255, 0);
}
header.sp .drawer_btn span:before {
  bottom: 0.1em;
  transition: 0.3s 0.3s, transform 0.3s;
}
header.sp .drawer_btn span:after {
  top: 0.1em;
  transition: 0.3s 0.3s, transform 0.3s;
}
header.sp .drawer_btn span.active {
  background: rgba(255, 255, 255, 0);
}
header.sp .drawer_btn span.active:before {
  bottom: 0;
  transform: rotate(-30deg);
  transition: 0.3s, transform 0.3s 0.3s;
}
header.sp .drawer_btn span.active:after {
  top: 0;
  transform: rotate(30deg);
  transition: 0.3s, transform 0.3s 0.3s;
}
header.sp .drawer_content {
  width: 100vw;
  height: 100vh;
  overflow: scroll;
  position: fixed;
  padding: 60px 0 160px;
  top: 0;
  right: -100%;
  opacity: 0;
  z-index: 101;
  transition: 0.3s;
}
header.sp .drawer_content.active {
  opacity: 1;
  top: 0;
  right: 0;
}
header.sp .drawer_content nav {
  padding: 0 20px 60px;
}
header.sp .drawer_content nav ul li {
  padding: 0.2em;
}
header.sp .drawer_content nav ul li.main {
  font-size: 22px;
}
header.sp .drawer_content nav ul li.sub {
  font-size: 18px;
}
header.sp .drawer_content nav ul li.sub a {
  padding-left: 1em;
}
header.sp .drawer_content nav ul li a {
  display: block;
}
header.sp .drawer_content .clinic_info {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px clamp(20px, 3vw, 40px) 20px;
  display: flex;
  align-items: center;
  gap: clamp(20px, 4vw, 60px);
}
header.sp .drawer_content .clinic_info .txt {
  flex-shrink: 0;
  width: 340px;
}
@media screen and (max-width: 800px) {
  header.sp .drawer_content .clinic_info .txt {
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
  }
}
header.sp .drawer_content .clinic_info .txt .address {
  margin-bottom: 20px;
}
@media screen and (max-width: 800px) {
  header.sp .drawer_content .clinic_info .txt .address {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
header.sp .drawer_content .clinic_info .txt .address .logo {
  max-width: 300px;
}
header.sp .drawer_content .clinic_info .txt .address .logo img {
  width: 100%;
}
header.sp .drawer_content .clinic_info .txt .address .map_link a {
  display: inline-flex;
  border-radius: 5px;
  padding: 0.3em 0.8em 0.4em 0.5em;
  align-items: center;
  gap: 0.2em;
  background: #fff;
  font-size: 13px;
  font-weight: 500;
}
header.sp .drawer_content .clinic_info .txt .address .map_link a img {
  width: 1.5em;
  flex-shrink: 0;
}
header.sp .drawer_content .clinic_info .txt .tel {
  background: #fff;
  border-radius: 5px;
  line-height: 1;
  padding: 15px;
}
header.sp .drawer_content .clinic_info .txt .tel p {
  text-align: center;
  margin-bottom: 3px;
}
header.sp .drawer_content .clinic_info .txt .tel a {
  font-size: 38px;
  gap: 0.2em;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.03em;
}
header.sp .drawer_content .clinic_info .txt .tel a img {
  width: 0.8em;
  transform: translateY(0.05em);
}
header.sp .drawer_content .clinic_info .txt .comment {
  font-size: 13px;
  text-align: center;
}
header.sp .drawer_content .clinic_info .txt table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  margin-bottom: 20px;
}
header.sp .drawer_content .clinic_info .txt table tr {
  border-bottom: 1px solid #aaa;
  color: #031528;
}
header.sp .drawer_content .clinic_info .txt table tr:first-child th,
header.sp .drawer_content .clinic_info .txt table tr:first-child td {
  font-weight: 400;
}
header.sp .drawer_content .clinic_info .txt table tr th,
header.sp .drawer_content .clinic_info .txt table tr td {
  font-size: 15px;
  text-align: center;
  position: relative;
  padding: 0.1em 0.5em;
}
header.sp .drawer_content .clinic_info .txt table tr th:first-child,
header.sp .drawer_content .clinic_info .txt table tr td:first-child {
  text-align: right;
  padding: 0.1em 1.2em 0.1em 1em;
}
header.sp .drawer_content .clinic_info .txt table tr th span,
header.sp .drawer_content .clinic_info .txt table tr td span {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
header.sp .drawer_content .clinic_info .txt table tr th span.open,
header.sp .drawer_content .clinic_info .txt table tr td span.open {
  width: 7px;
  height: 7px;
  background: #031528;
  border-radius: 100%;
}
header.sp .drawer_content .clinic_info .txt table tr th span.close,
header.sp .drawer_content .clinic_info .txt table tr td span.close {
  width: 7px;
  height: 1px;
  background: #031528;
}
header.sp .drawer_content .clinic_info .map {
  width: 100%;
  position: relative;
  aspect-ratio: 5/3;
}
@media screen and (max-width: 1000px) {
  header.sp .drawer_content .clinic_info .map {
    aspect-ratio: 1;
  }
}
@media screen and (max-width: 800px) {
  header.sp .drawer_content .clinic_info .map {
    display: none;
  }
}
header.sp .drawer_content .clinic_info .map iframe {
  border-radius: 10px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  filter: grayscale(0%);
}

footer {
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 800px) {
  footer {
    background: #e5f1fd;
  }
}
footer .bg_line {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  line-height: 0;
}
@media screen and (max-width: 800px) {
  footer .bg_line {
    bottom: auto;
    top: -40vw;
  }
}
footer .bg_line img {
  width: 100%;
}
footer .clinic_info {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px clamp(20px, 3vw, 40px) 20px;
  display: flex;
  align-items: center;
  gap: clamp(20px, 4vw, 60px);
}
footer .clinic_info .txt {
  flex-shrink: 0;
  width: 340px;
}
@media screen and (max-width: 800px) {
  footer .clinic_info .txt {
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
  }
}
footer .clinic_info .txt .address {
  margin-bottom: 20px;
}
@media screen and (max-width: 800px) {
  footer .clinic_info .txt .address {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
footer .clinic_info .txt .address .logo {
  max-width: 300px;
}
footer .clinic_info .txt .address .logo img {
  width: 100%;
}
footer .clinic_info .txt .address .map_link a {
  display: inline-flex;
  border-radius: 5px;
  padding: 0.3em 0.8em 0.4em 0.5em;
  align-items: center;
  gap: 0.2em;
  background: #fff;
  font-size: 13px;
  font-weight: 500;
}
footer .clinic_info .txt .address .map_link a img {
  width: 1.5em;
  flex-shrink: 0;
}
footer .clinic_info .txt .tel {
  background: #fff;
  border-radius: 5px;
  line-height: 1;
  padding: 15px;
  margin-bottom: 10px;
}
footer .clinic_info .txt .tel p {
  text-align: center;
  margin-bottom: 3px;
}
footer .clinic_info .txt .tel a {
  font-size: 38px;
  gap: 0.2em;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.03em;
}
footer .clinic_info .txt .tel a img {
  width: 0.8em;
  transform: translateY(0.05em);
}
footer .clinic_info .txt .annotation ul li {
  font-size: 13px;
  line-height: 1.6;
  position: relative;
  padding-left: 1em;
}
footer .clinic_info .txt .annotation ul li::before {
  content: "※";
  font-size: 12px;
  margin-right: 0.2em;
  position: absolute;
  top: 0;
  left: 0;
}
footer .clinic_info .txt table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  margin-bottom: 20px;
}
footer .clinic_info .txt table tr {
  border-bottom: 1px solid #aaa;
  color: #031528;
}
footer .clinic_info .txt table tr:first-child th,
footer .clinic_info .txt table tr:first-child td {
  font-weight: 400;
}
footer .clinic_info .txt table tr th,
footer .clinic_info .txt table tr td {
  font-size: 15px;
  text-align: center;
  position: relative;
  padding: 0.1em 0.5em;
}
footer .clinic_info .txt table tr th:first-child,
footer .clinic_info .txt table tr td:first-child {
  text-align: right;
  padding: 0.1em 1.2em 0.1em 1em;
}
footer .clinic_info .txt table tr th img,
footer .clinic_info .txt table tr td img {
  width: 15px;
}
footer .clinic_info .map {
  width: 100%;
  position: relative;
  aspect-ratio: 5/3;
}
@media screen and (max-width: 1000px) {
  footer .clinic_info .map {
    aspect-ratio: 1;
  }
}
@media screen and (max-width: 800px) {
  footer .clinic_info .map {
    display: none;
  }
}
footer .clinic_info .map iframe {
  border-radius: 10px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  filter: grayscale(0%);
}
footer .foot {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}
footer .foot .copyright {
  border-top: solid 1px #cad3dc;
  padding-top: 10px;
  margin-top: 20px;
  text-align: right;
  font-size: 12px;
}
footer .foot nav ul {
  display: flex;
  flex-wrap: wrap;
  font-size: 15px;
}
footer .foot nav ul:nth-child(2) {
  font-size: 13px;
}
footer .foot nav ul li {
  display: flex;
  align-items: center;
}
footer .foot nav ul li:last-child::after {
  display: none;
}
footer .foot nav ul li::after {
  content: "";
  display: block;
  width: 1px;
  height: 0.8em;
  background: #000;
  transform: rotate(10deg);
}
footer .foot nav ul li a {
  padding: 0.2em 0.8em;
}

.page_top .mainvisual {
  width: 100%;
  position: relative;
  top: -3vw;
}
@media only screen and (max-width: 500px) {
  .page_top .mainvisual .mv_img.pc {
    display: none;
  }
}
.page_top .mainvisual .mv_img.sp {
  display: none;
}
@media only screen and (max-width: 500px) {
  .page_top .mainvisual .mv_img.sp {
    display: block;
  }
}
.page_top .mainvisual .mv_img img {
  width: 100%;
}
.page_top .mainvisual .line_top,
.page_top .mainvisual .line_bottom {
  width: 100%;
  position: absolute;
}
@media only screen and (max-width: 500px) {
  .page_top .mainvisual .line_top.pc,
  .page_top .mainvisual .line_bottom.pc {
    display: none;
  }
}
.page_top .mainvisual .line_top.sp,
.page_top .mainvisual .line_bottom.sp {
  display: none;
}
@media only screen and (max-width: 500px) {
  .page_top .mainvisual .line_top.sp,
  .page_top .mainvisual .line_bottom.sp {
    display: block;
  }
}
.page_top .mainvisual .line_top img,
.page_top .mainvisual .line_bottom img {
  width: 100%;
}
.page_top .mainvisual .line_bottom {
  bottom: 0;
}
.page_top main {
  position: relative;
}
.page_top main.effect::before {
  background: #fff;
}
.page_top main::before {
  content: "";
  display: block;
  max-width: 1200px;
  max-height: 1200px;
  width: 90vw;
  height: 90vw;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  z-index: -1;
  border-radius: 100%;
  filter: blur(100px);
  transition: 1s;
}
@media screen and (max-width: 700px) {
  .page_top main::before {
    display: none;
  }
}
.page_top main .inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  gap: clamp(10px, 4vw, 60px);
  padding: 100px 10px 160px;
  position: relative;
}
.page_top main .inner .copy {
  display: flex;
  align-items: flex-start;
  font-size: 80px;
  height: 9em;
  position: sticky;
  top: 0.5em;
  flex-shrink: 0;
}
@media only screen and (max-width: 600px) {
  .page_top main .inner .copy {
    font-size: 40px;
  }
}
.page_top main .inner .copy svg:nth-child(1) {
  width: 0.6em;
  transform: translateY(0.1em);
}
.page_top main .inner .copy svg:nth-child(2) {
  width: 1em;
}
.page_top main .inner .copy svg path {
  opacity: 0;
  filter: blur(3px);
  transform: translateY(0.4em) translateX(-0.3em);
}
.page_top main .inner .copy.effect svg path:nth-child(1) {
  animation: about_copy 2s 0.13s both;
}
.page_top main .inner .copy.effect svg path:nth-child(2) {
  animation: about_copy 2s 0.26s both;
}
.page_top main .inner .copy.effect svg path:nth-child(3) {
  animation: about_copy 2s 0.39s both;
}
.page_top main .inner .copy.effect svg path:nth-child(4) {
  animation: about_copy 2s 0.52s both;
}
.page_top main .inner .copy.effect svg path:nth-child(5) {
  animation: about_copy 2s 0.65s both;
}
.page_top main .inner .copy.effect svg path:nth-child(6) {
  animation: about_copy 2s 0.78s both;
}
.page_top main .inner .copy.effect svg path:nth-child(7) {
  animation: about_copy 2s 0.91s both;
}
.page_top main .inner .copy.effect svg path:nth-child(8) {
  animation: about_copy 2s 1.04s both;
}
.page_top main .inner .copy.effect svg path:nth-child(9) {
  animation: about_copy 2s 1.17s both;
}
.page_top main .inner .copy.effect svg path:nth-child(10) {
  animation: about_copy 2s 1.3s both;
}
.page_top main .inner .copy.effect svg path:nth-child(11) {
  animation: about_copy 2s 1.43s both;
}
.page_top main .inner .copy.effect svg path:nth-child(12) {
  animation: about_copy 2s 1.56s both;
}
.page_top main .inner .copy.effect svg path:nth-child(13) {
  animation: about_copy 2s 1.69s both;
}
.page_top main .inner .copy.effect svg path:nth-child(14) {
  animation: about_copy 2s 1.82s both;
}
.page_top main .inner .copy.effect svg path:nth-child(15) {
  animation: about_copy 2s 1.95s both;
}
.page_top main .inner .copy.effect svg path:nth-child(16) {
  animation: about_copy 2s 2.08s both;
}
.page_top main .inner .copy.effect svg path:nth-child(17) {
  animation: about_copy 2s 2.21s both;
}
.page_top main .inner .copy.effect svg path:nth-child(18) {
  animation: about_copy 2s 2.34s both;
}
.page_top main .inner .copy.effect svg path:nth-child(19) {
  animation: about_copy 2s 2.47s both;
}
.page_top main .inner .copy.effect svg path:nth-child(20) {
  animation: about_copy 2s 2.6s both;
}
@keyframes about_copy {
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) translateX(0);
  }
}
.page_top main .inner .content {
  padding: clamp(20px, 4vw, 60px) 0;
}
.page_top main .inner .content h2 {
  font-size: clamp(18px, 2.4vw, 28px);
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 1em;
}
.page_top main .inner .content p {
  font-size: clamp(14px, 1.6vw, 18px);
  line-height: 2.2;
  margin-bottom: 1em;
}
.page_top main .inner .content .about {
  margin-bottom: 60px;
}
.page_top main .inner .content .about .img_box {
  display: flex;
  gap: 20px;
  padding: 20px;
}
.page_top main .inner .content .about .img_box img {
  flex: 1;
}
.page_top main .inner .content .philosophy {
  margin-bottom: 100px;
}
.page_top main .inner .content .service h2 {
  text-align: center;
}
.page_top main .inner .content .service ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
@media only screen and (max-width: 800px) {
  .page_top main .inner .content .service ul {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (max-width: 600px) {
  .page_top main .inner .content .service ul {
    grid-template-columns: repeat(2, 1fr);
  }
}
.page_top main .inner .content .service ul li a {
  display: block;
  background: #fff;
  text-align: center;
  padding: 0.5em;
  border-radius: 5px;
  box-shadow: 5px 5px 40px -20px rgba(0, 0, 0, 0.2);
  font-size: clamp(13px, 1.4vw, 15px);
}
.page_top .blank_img {
  width: 100%;
  position: relative;
}
.page_top .blank_img .mv_img img {
  width: 100%;
}
.page_top .blank_img .line_top,
.page_top .blank_img .line_bottom {
  width: 100%;
  position: absolute;
}
.page_top .blank_img .line_top img,
.page_top .blank_img .line_bottom img {
  width: 100%;
}
.page_top .blank_img .line_bottom {
  bottom: 0;
}

.page_medical main {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 20px;
  gap: 40px;
  position: relative;
}
@media screen and (max-width: 800px) {
  .page_medical main {
    flex-direction: column;
  }
}
@media screen and (min-width: 800px) {
  .page_medical main nav.content_list {
    width: 260px;
    height: 60vh;
    position: sticky;
    top: 100px;
    z-index: 1;
  }
}
.page_medical main nav.content_list .btn {
  position: fixed;
  z-index: 1;
  bottom: 10px;
  right: 10px;
  font-size: 14px;
  background: #ddd;
  padding: 0.2em 1em;
  border-radius: 5px;
}
@media screen and (min-width: 800px) {
  .page_medical main nav.content_list .btn {
    display: none;
  }
}
.page_medical main nav.content_list > ul {
  font-size: 14px;
  line-height: 1.4;
}
@media screen and (max-width: 800px) {
  .page_medical main nav.content_list > ul {
    position: fixed;
    z-index: 1;
    background: #ddd;
    bottom: 50px;
    right: -300px;
    width: 280px;
    transition: 0.4s;
    border-radius: 5px;
    padding: 10px;
  }
  .page_medical main nav.content_list > ul.active {
    right: 10px;
  }
}
.page_medical main nav.content_list > ul li a {
  display: block;
  padding: 0.4em 0 0.4em 0.8em;
  border-radius: 5px;
  position: relative;
}
.page_medical main nav.content_list > ul li ul {
  font-size: 13px;
  padding-left: 1.5em;
  margin-bottom: 10px;
}
.page_medical main nav.content_list > ul li ul li a::before {
  content: "";
  display: block;
  width: 0.5em;
  height: 1px;
  background: #666;
  position: absolute;
  top: 1em;
  left: 0;
}
.page_medical main article {
  color: #031528;
  margin-bottom: 200px;
  flex: 1;
}
.page_medical main article h1 {
  font-size: clamp(22px, 2.5vw, 30px);
  text-align: center;
  padding-bottom: 2em;
}
.page_medical main article h2 {
  font-size: clamp(22px, 2.6vw, 30px);
  padding: 2em 0 1em;
  font-weight: 600;
}
.page_medical main article h3 {
  font-size: clamp(20px, 2vw, 22px);
  padding: 1em 0 0.5em;
  font-weight: 600;
}
.page_medical main article h4 {
  font-size: clamp(16px, 1.7vw, 18px);
  padding: 0.5em 0 0.5em;
  font-weight: 600;
}
.page_medical main article ol {
  padding-left: 1.3em;
  font-size: clamp(13px, 1.4vw, 15px);
}
.page_medical main article ol li {
  list-style: decimal;
  margin-bottom: 0.5em;
}
.page_medical main article figure {
  padding: clamp(10px, 1vw, 20px) clamp(10px, 3vw, 40px) clamp(10px, 2vw, 40px);
}
.page_medical main article figure img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 5px 5px 40px -20px rgba(0, 0, 0, 0.2);
}
.page_medical main article figure.clm {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.page_medical main article p {
  line-height: 2;
  font-weight: 400;
  margin-bottom: 1em;
  font-size: clamp(14px, 1.5vw, 16px);
}
.page_medical main article p small {
  display: inline-block;
  line-height: 1.8;
}
.page_medical main article p:last-child {
  margin-bottom: 0;
}
.page_medical main article p a {
  text-decoration: underline;
}
.page_medical main article .list {
  background: #fff;
  padding: clamp(15px, 1.8vw, 30px) clamp(10px, 2vw, 30px);
  border-radius: 10px;
  box-shadow: 5px 5px 40px -20px rgba(0, 0, 0, 0.2);
  box-shadow: 10px 10px 30px -20px rgba(0, 0, 0, 0.1);
  margin: 20px 0 60px;
}
.page_medical main article .list ul {
  padding-left: 10px;
}
.page_medical main article .list ul li {
  display: flex;
  gap: 0.5em;
  margin-bottom: 0.5em;
  font-weight: normal;
}
.page_medical main article .list ul li::before {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  flex-shrink: 0;
  transform: translateY(0.4em);
  -webkit-mask: url("../img/page/page_medical/common/icon/check.svg") no-repeat center center/contain;
          mask: url("../img/page/page_medical/common/icon/check.svg") no-repeat center center/contain;
  background: #111;
}
.page_medical main article .clm_box {
  background: #fff;
  padding: clamp(15px, 1.8vw, 30px) clamp(10px, 2vw, 30px);
  border-radius: 10px;
  box-shadow: 5px 5px 40px -20px rgba(0, 0, 0, 0.2);
  box-shadow: 10px 10px 30px -20px rgba(0, 0, 0, 0.1);
  margin: 20px 0 60px;
  display: flex;
  align-items: flex-start;
  gap: 30px;
}
@media screen and (max-width: 700px) {
  .page_medical main article .clm_box {
    flex-direction: column;
    align-items: center;
  }
}
.page_medical main article .clm_box img {
  display: block;
  border-radius: 10px;
  flex-shrink: 0;
}
.page_medical main article .clm_box img.size_m {
  width: 300px;
}
.page_medical main article .clm_box img.size_s {
  width: 200px;
}
.page_medical main article .clm_box .txt p {
  font-size: clamp(12px, 1.3vw, 14px);
}
.page_medical main article .float_box {
  padding: 60px 0 40px;
}
.page_medical main article .float_box img {
  width: 260px;
  float: left;
  margin-right: 20px;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 5px 5px 40px -20px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 550px) {
  .page_medical main article .float_box img {
    width: 100%;
    float: none;
  }
}
.page_medical main article .float_box h3 {
  padding-top: 0;
}
.page_medical main article .list_caution {
  padding: 10px 0;
}
.page_medical main article .list_caution ul {
  padding-left: 0.5em;
  font-size: clamp(13px, 1.4vw, 15px);
}
.page_medical main article .list_caution ul li {
  display: flex;
  gap: 0.5em;
  margin-bottom: 0.5em;
  font-weight: normal;
}
.page_medical main article .list_caution ul li::before {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  flex-shrink: 0;
  transform: translateY(0.4em);
  -webkit-mask: url("../img/page/page_medical/icon/check.svg") no-repeat center center/contain;
          mask: url("../img/page/page_medical/icon/check.svg") no-repeat center center/contain;
}
.page_medical main article .list_box_1 {
  background: #fff;
  padding: clamp(15px, 1.8vw, 30px) clamp(10px, 2vw, 30px);
  border-radius: 10px;
  box-shadow: 5px 5px 40px -20px rgba(0, 0, 0, 0.2);
  box-shadow: 10px 10px 30px -20px rgba(0, 0, 0, 0.1);
  margin: 20px 0 60px;
}
.page_medical main article .list_box_1 h4 {
  text-align: center;
  margin-bottom: 1em;
  padding-top: 0;
}
.page_medical main article .list_box_1 ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5em;
  font-size: clamp(14px, 1.5vw, 15px);
}
@media screen and (max-width: 800px) {
  .page_medical main article .list_box_1 ul {
    grid-template-columns: repeat(1, 1fr);
  }
}
.page_medical main article .list_box_1 ul li {
  display: flex;
  gap: 0.5em;
}
.page_medical main article .list_box_1 ul li::before {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  flex-shrink: 0;
  transform: translateY(0.4em);
  -webkit-mask: url("../img/page/page_medical/common/icon/check.svg") no-repeat center center/contain;
          mask: url("../img/page/page_medical/common/icon/check.svg") no-repeat center center/contain;
  background: #333;
}
.page_medical main article .list_pros_cons {
  background: #fff;
  padding: clamp(15px, 1.8vw, 30px) clamp(10px, 2vw, 30px);
  border-radius: 10px;
  box-shadow: 5px 5px 40px -20px rgba(0, 0, 0, 0.2);
  box-shadow: 10px 10px 30px -20px rgba(0, 0, 0, 0.1);
  margin: 20px 0 60px;
}
.page_medical main article .list_pros_cons .item {
  position: relative;
  padding: 10px 0 10px clamp(35px, 4vw, 50px);
}
.page_medical main article .list_pros_cons .item::before {
  content: "";
  display: block;
  width: clamp(30px, 3.5vw, 40px);
  height: clamp(30px, 3.5vw, 40px);
  position: absolute;
  top: 10px;
  left: 0;
  background-size: cover;
}
.page_medical main article .list_pros_cons .item.pros::before {
  background-image: url("../img/page/page_medical/common/icon/pros.svg");
}
.page_medical main article .list_pros_cons .item.cons::before {
  background-image: url("../img/page/page_medical/common/icon/cons.svg");
}
.page_medical main article .list_step {
  padding: 20px clamp(0px, 1vw, 20px);
}
.page_medical main article .list_step .item {
  position: relative;
  padding: 0 clamp(0px, 1vw, 20px) 40px clamp(20px, 3vw, 40px);
}
.page_medical main article .list_step .item::before, .page_medical main article .list_step .item::after {
  content: "";
  display: block;
  background: #1b446f;
  position: absolute;
}
.page_medical main article .list_step .item::before {
  width: 10px;
  height: 10px;
  border-radius: 100%;
  top: 12px;
  left: 0;
}
.page_medical main article .list_step .item::after {
  width: 1px;
  height: 100%;
  top: 14px;
  left: 5px;
}
.page_medical main article .list_step .item:last-child::after {
  display: none;
}
.page_medical main article .list_step .item h4 {
  padding-top: 0;
}
.page_medical main article .list_step .item h5 {
  font-size: 18px;
}
.page_medical main article .list_step .item p {
  line-height: 1.8;
}
.page_medical main article .list_step .item .clinic_data {
  background: #fff;
  box-shadow: 5px 5px 40px -20px rgba(0, 0, 0, 0.2);
  padding: 30px 20px;
  border-radius: 10px;
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
.page_medical main article .list_step .item .clinic_data .tel span {
  display: block;
  line-height: 1;
}
.page_medical main article .list_step .item .clinic_data .tel span:nth-child(1) {
  font-size: 40px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0.2em;
}
.page_medical main article .list_step .item .clinic_data .tel span:nth-child(1) img {
  width: 0.8em;
  transform: translateY(0.05em);
}
.page_medical main article .list_step .item .clinic_data .tel span:nth-child(2) {
  font-size: 14px;
  line-height: 1.2;
  text-align: right;
}
.page_medical main article .list_step .item .clinic_data .time {
  font-size: 15px;
  line-height: 1.6;
}
.page_medical main article .list_step .item .diagnose_list {
  box-shadow: 5px 5px 40px -20px rgba(0, 0, 0, 0.2);
  background: #fff;
  display: flex;
  align-items: center;
  padding: 15px;
  border-radius: 10px;
  gap: 40px;
  margin: 20px 0;
}
.page_medical main article .list_step .item .diagnose_list .img_box {
  width: 140px;
  flex-shrink: 0;
  line-height: 1;
}
.page_medical main article .list_step .item .diagnose_list .img_box img {
  border-radius: 10px;
}
.page_medical main article .list_step .item .diagnose_list .txt_box h5 {
  font-size: 16px;
}
.page_medical main article .list_step .item .diagnose_list .txt_box ul {
  font-size: 14px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 1.5em;
  padding-left: 1.5em;
}
.page_medical main article .list_step .item .diagnose_list .txt_box ul li {
  list-style: disc;
}
.page_medical main article .list_price {
  background: #fff;
  padding: clamp(15px, 1.8vw, 30px) clamp(10px, 2vw, 30px);
  border-radius: 10px;
  box-shadow: 5px 5px 40px -20px rgba(0, 0, 0, 0.2);
  box-shadow: 10px 10px 30px -20px rgba(0, 0, 0, 0.1);
  margin: 20px 0 60px;
}
.page_medical main article .list_price h3 {
  text-align: center;
}
.page_medical main article .list_price ul {
  max-width: 750px;
  margin: 0 auto;
}
.page_medical main article .list_price ul li {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: solid 1px #aaa;
  padding: 5px 10px;
  margin-bottom: 10px;
}
.page_medical main article .list_price ul li .menu span {
  font-size: 14px;
}
.page_medical main article .list_price ul li .menu h4 {
  padding: 0;
}
.page_medical main article .list_price ul li .price {
  font-size: 18px;
  font-weight: 500;
}
.page_medical main article .progression {
  background: #fff;
  padding: clamp(15px, 1.8vw, 30px) clamp(10px, 2vw, 30px);
  border-radius: 10px;
  box-shadow: 5px 5px 40px -20px rgba(0, 0, 0, 0.2);
  box-shadow: 10px 10px 30px -20px rgba(0, 0, 0, 0.1);
  margin: 20px 0 60px;
}
.page_medical main article .progression ul {
  display: flex;
  gap: clamp(5px, 1vw, 30px);
  padding: 40px 0 20px;
}
.page_medical main article .progression ul li {
  flex: 1;
  line-height: 1.4;
}
.page_medical main article .progression ul li img {
  border-radius: clamp(5px, 0.5vw, 10px);
}
.page_medical main article .progression ul li span {
  display: block;
  text-align: center;
  font-size: clamp(12px, 1.3vw, 14px);
}
.page_medical main article .progression .meter {
  background-image: linear-gradient(90deg, #f6e4c1, #f56b3f);
  display: flex;
  justify-content: space-between;
  border-radius: 5px;
  font-size: clamp(13px, 1.4vw, 15px);
  padding: 0.5em 1.5em;
  font-weight: 500;
}
.page_medical main article .progression .meter span:nth-child(1) {
  color: #cd4b21;
}
.page_medical main article .progression .meter span:nth-child(2) {
  color: #fff;
}
.page_medical main article .progression .content .character {
  font-family: "M PLUS Rounded 1c", sans-serif;
  margin-left: -40px;
}
.page_medical main article .progression .content .character .txt {
  padding: 20px 30px 20px 60px;
  border-radius: 10px;
  font-size: 15px;
  position: relative;
}
.page_medical main article .progression .content .character .txt::before {
  content: "";
  display: block;
  width: 80px;
  height: 80px;
  background-size: contain;
  position: absolute;
  bottom: -10px;
  left: -30px;
  background-image: url("../img/page/page_medical/common/character/character_1.png");
}
.page_medical main article .progression .content figure {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(5px, 1vw, 15px);
  padding: 0 0 30px;
}
.page_medical main article .progression .content figure img {
  width: clamp(70px, 10vw, 120px);
  border-radius: clamp(5px, 0.5vw, 10px);
  box-shadow: none;
}
.page_medical main article .treatment_step {
  background: #fff;
  padding: clamp(15px, 1.8vw, 30px) clamp(10px, 2vw, 30px);
  border-radius: 10px;
  box-shadow: 5px 5px 40px -20px rgba(0, 0, 0, 0.2);
  box-shadow: 10px 10px 30px -20px rgba(0, 0, 0, 0.1);
  margin: 20px 0 60px;
}
.page_medical main article .treatment_step ol {
  padding: 20px 0;
}
.page_medical main article .treatment_step ol li {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}
.page_medical main article .treatment_step ol li img {
  width: 120px;
  flex-shrink: 0;
  border-radius: 10px;
}
.page_medical main article .treatment_step ol li .txt {
  padding-top: 10px;
}
.page_medical main article .treatment_step ol li .txt p {
  font-size: clamp(12px, 1.3vw, 14px);
}
.page_medical main article .treatment_step .please {
  border-top: solid 1px #ddd;
  padding: 10px 10px 20px;
  text-align: center;
}
@media screen and (max-width: 500px) {
  .page_medical main article .treatment_step .please {
    text-align: left;
  }
}
.page_medical main article .treatment_step .please p {
  font-size: 14px;
}
.page_medical main article .dialogue {
  padding: 40px 20px 60px;
  font-family: "M PLUS Rounded 1c", sans-serif;
}
.page_medical main article .dialogue.character_1 .txt::before {
  background-image: url("../img/page/page_medical/common/character/character_1.png");
}
.page_medical main article .dialogue.character_2 .txt::before {
  background-image: url("../img/page/page_medical/common/character/character_2.png");
}
.page_medical main article .dialogue.character_3 .txt::before {
  background-image: url("../img/page/page_medical/common/character/character_3.png");
}
.page_medical main article .dialogue .txt {
  background: #fff;
  padding: 20px 30px 20px 60px;
  border-radius: 10px;
  font-size: 15px;
  position: relative;
}
.page_medical main article .dialogue .txt::before {
  content: "";
  display: block;
  width: 80px;
  height: 80px;
  background-size: contain;
  position: absolute;
  bottom: -10px;
  left: -30px;
}
.page_medical main article .price_inlay_crown {
  background: #fff;
  padding: clamp(15px, 1.8vw, 30px) clamp(10px, 2vw, 30px);
  border-radius: 10px;
  box-shadow: 5px 5px 40px -20px rgba(0, 0, 0, 0.2);
  box-shadow: 10px 10px 30px -20px rgba(0, 0, 0, 0.1);
  margin: 20px 0 60px;
}
.page_medical main article .price_inlay_crown h3 {
  text-align: center;
}
.page_medical main article .price_inlay_crown .inner table {
  width: 100%;
  border-spacing: 0;
  border-radius: 5px;
  border-left: 1px solid #aaa;
  border-top: 1px solid #aaa;
}
.page_medical main article .price_inlay_crown .inner table tr:first-child > td:first-child {
  border-top-left-radius: 5px;
}
.page_medical main article .price_inlay_crown .inner table tr:first-child > td:last-child {
  border-top-right-radius: 5px;
}
.page_medical main article .price_inlay_crown .inner table tr:last-child > td:first-child {
  border-bottom-left-radius: 5px;
}
.page_medical main article .price_inlay_crown .inner table tr:last-child > td:last-child {
  border-bottom-right-radius: 5px;
}
.page_medical main article .price_inlay_crown .inner table tr td {
  font-size: 15px;
  text-align: left;
  padding: 0.4em 0.8em;
  border-right: 1px solid #aaa;
  border-bottom: 1px solid #aaa;
}
.page_medical main article .price_inlay_crown .inner table tr td:last-child {
  text-align: right;
}
.page_medical main article .use {
  background: #fff;
  padding: clamp(15px, 1.8vw, 30px) clamp(10px, 2vw, 30px);
  border-radius: 10px;
  box-shadow: 5px 5px 40px -20px rgba(0, 0, 0, 0.2);
  box-shadow: 10px 10px 30px -20px rgba(0, 0, 0, 0.1);
  margin: 20px 0 60px;
}
.page_medical main article .use .logo img {
  display: block;
  width: 240px;
  margin: 0 auto;
}
.page_medical main article .use h3 {
  text-align: center;
}
.page_medical main article .use p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 15px;
  margin-bottom: 20px;
}
.page_medical main article .use .btn {
  text-align: center;
}
.page_medical main article .use .btn a {
  background: #c9daea;
  padding: 0.5em 1em 0.5em 1.8em;
  text-align: center;
  border-radius: 5px;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 1em;
}
.page_medical main article .use .btn a::after {
  content: "";
  display: block;
  width: 0.4em;
  height: 0.4em;
  border-top: solid 1px #000;
  border-left: solid 1px #000;
  transform: rotate(135deg);
}
.page_medical main article .faq .item {
  margin-bottom: 40px;
}
.page_medical main article .faq .item .Q {
  font-size: 20px;
  font-weight: 500;
}

.page_about {
  padding-top: 100px;
}
.page_about .inner {
  padding: 100px 20px;
}
.page_about .inner .concept {
  margin-bottom: 100px;
}
.page_about .inner .concept h2 {
  text-align: center;
  margin-bottom: 30px;
}
.page_about .inner .concept h2 img {
  max-width: 680px;
}
.page_about .inner .concept p {
  text-align: center;
  font-size: 18px;
  line-height: 2.6;
  margin-bottom: 1em;
}
@media screen and (max-width: 800px) {
  .page_about .inner .concept p {
    font-size: 15px;
    text-align: left;
    line-height: 2;
  }
  .page_about .inner .concept p br {
    display: none;
  }
}
.page_about .inner .recommended {
  max-width: 1000px;
  margin: 0 auto 100px;
}
.page_about .inner .recommended .box {
  padding: 30px 20px;
  border-radius: 10px;
  background: #fff;
}
.page_about .inner .recommended .box h2 {
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 40px;
}
.page_about .inner .recommended .box ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5em;
  font-size: 15px;
  max-width: 700px;
  margin: 0 auto 40px;
}
@media screen and (max-width: 800px) {
  .page_about .inner .recommended .box ul {
    grid-template-columns: repeat(1, 1fr);
  }
}
.page_about .inner .recommended .box ul li {
  display: flex;
  gap: 0.5em;
}
.page_about .inner .recommended .box ul li::before {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  flex-shrink: 0;
  transform: translateY(0.4em);
  -webkit-mask: url("../img/page/page_medical/icon/check.svg") no-repeat center center/contain;
          mask: url("../img/page/page_medical/icon/check.svg") no-repeat center center/contain;
  background: #333;
}
.page_about .inner .recommended .box p {
  text-align: center;
  font-size: 14px;
}
.page_about .inner .recommended .comment {
  font-size: 14px;
  color: #666;
}
.page_about .inner .list_step {
  padding: 20px clamp(0px, 1vw, 20px);
  max-width: 800px;
  margin: 0 auto 100px;
}
.page_about .inner .list_step h2 {
  text-align: center;
  font-weight: 500;
  margin-bottom: 2em;
}
.page_about .inner .list_step .item {
  position: relative;
  padding: 0 clamp(0px, 1vw, 20px) 60px clamp(20px, 3vw, 40px);
}
.page_about .inner .list_step .item::before, .page_about .inner .list_step .item::after {
  content: "";
  display: block;
  background: #1b446f;
  position: absolute;
}
.page_about .inner .list_step .item::before {
  width: 11px;
  height: 11px;
  border-radius: 100%;
  top: 12px;
  left: 0;
}
.page_about .inner .list_step .item::after {
  width: 1px;
  height: 100%;
  top: 14px;
  left: 5px;
}
.page_about .inner .list_step .item:last-child::after {
  display: none;
}
.page_about .inner .list_step .item h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 0.5em;
}
.page_about .inner .list_step .item h5 {
  font-size: 18px;
}
.page_about .inner .list_step .item p {
  line-height: 1.8;
  font-size: clamp(14px, 1.5vw, 16px);
}
.page_about .inner .list_step .item .clinic_data {
  background: #fff;
  box-shadow: 5px 5px 40px -20px rgba(0, 0, 0, 0.2);
  padding: clamp(15px, 2vw, 30px) 10px;
  border-radius: 10px;
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
@media screen and (max-width: 700px) {
  .page_about .inner .list_step .item .clinic_data {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}
.page_about .inner .list_step .item .clinic_data .tel a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 0.2em;
  font-size: clamp(32px, 3.6vw, 40px);
  line-height: 1;
}
.page_about .inner .list_step .item .clinic_data .tel a img {
  width: 0.8em;
  transform: translateY(0.05em);
}
.page_about .inner .list_step .item .clinic_data .tel span {
  display: block;
  font-size: 14px;
  line-height: 1.2;
  text-align: right;
}
.page_about .inner .list_step .item .clinic_data .time {
  font-size: 15px;
  line-height: 1.6;
}
@media screen and (max-width: 700px) {
  .page_about .inner .list_step .item .clinic_data .time {
    border-top: solid 1px #ddd;
    width: 100%;
    padding-top: 10px;
    margin-top: 10px;
  }
}
.page_about .inner .list_step .item .diagnose_list {
  box-shadow: 5px 5px 40px -20px rgba(0, 0, 0, 0.2);
  background: #fff;
  display: flex;
  align-items: center;
  padding: 15px;
  border-radius: 10px;
  gap: clamp(10px, 3vw, 40px);
  margin: 20px 0;
}
@media screen and (max-width: 500px) {
  .page_about .inner .list_step .item .diagnose_list {
    flex-direction: column;
  }
}
.page_about .inner .list_step .item .diagnose_list .img_box {
  width: 140px;
  flex-shrink: 0;
  line-height: 1;
}
@media screen and (max-width: 500px) {
  .page_about .inner .list_step .item .diagnose_list .img_box {
    width: 100%;
  }
}
.page_about .inner .list_step .item .diagnose_list .img_box img {
  border-radius: 5px;
}
.page_about .inner .list_step .item .diagnose_list .txt_box h5 {
  font-size: 16px;
}
.page_about .inner .list_step .item .diagnose_list .txt_box ul {
  font-size: 14px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 1.5em;
  padding-left: 1.5em;
}
@media screen and (max-width: 700px) {
  .page_about .inner .list_step .item .diagnose_list .txt_box ul {
    grid-template-columns: repeat(2, 1fr);
  }
}
.page_about .inner .list_step .item .diagnose_list .txt_box ul li {
  list-style: disc;
}
.page_about .inner .reserve_info {
  max-width: 800px;
  margin: 0 auto 100px;
}
.page_about .inner .reserve_info h2 {
  font-size: 22px;
  font-weight: 500;
}
.page_about .inner .reserve_info h3 {
  font-size: 18px;
  padding: 2em 0 0.5em;
  font-weight: 500;
}
.page_about .inner .reserve_info p {
  font-size: 15px;
}

.page_doctor .profile {
  padding: 60px clamp(15px, 2vw, 40px) clamp(40px, 6vw, 100px) clamp(15px, 2vw, 40px);
}
.page_doctor .profile .inner {
  max-width: 1000px;
  margin: 0 auto;
}
.page_doctor .profile .inner h2 {
  text-align: center;
  font-size: clamp(26px, 3vw, 40px);
  margin-bottom: 1.5em;
}
.page_doctor .profile .inner .item {
  display: flex;
  gap: 40px;
  margin-bottom: 100px;
}
@media only screen and (max-width: 600px) {
  .page_doctor .profile .inner .item {
    gap: 20px;
    flex-direction: column;
  }
}
.page_doctor .profile .inner .item .img_box {
  width: 400px;
}
@media only screen and (max-width: 900px) {
  .page_doctor .profile .inner .item .img_box {
    width: 30vw;
  }
}
@media only screen and (max-width: 600px) {
  .page_doctor .profile .inner .item .img_box {
    width: 80%;
    margin: 0 auto;
  }
}
.page_doctor .profile .inner .item .img_box img {
  border-radius: 10px;
  box-shadow: 5px 5px 40px -20px rgba(0, 0, 0, 0.2);
}
.page_doctor .profile .inner .item .txt_box {
  flex: 1;
}
.page_doctor .profile .inner .item .txt_box .name {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.5;
}
@media only screen and (max-width: 600px) {
  .page_doctor .profile .inner .item .txt_box .name {
    text-align: center;
  }
}
.page_doctor .profile .inner .item .txt_box .job {
  font-size: 15px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 600px) {
  .page_doctor .profile .inner .item .txt_box .job {
    text-align: center;
  }
}
.page_doctor .profile .inner .item .txt_box p {
  line-height: 1.8;
}
.page_doctor .profile .inner .item .txt_box table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  margin-top: 40px;
}
.page_doctor .profile .inner .item .txt_box table tr {
  border-bottom: solid 1px #ccc;
}
.page_doctor .profile .inner .item .txt_box table tr:first-child {
  border-top: solid 1px #ccc;
}
.page_doctor .profile .inner .item .txt_box table tr th,
.page_doctor .profile .inner .item .txt_box table tr td {
  padding: 0.4em;
  vertical-align: top;
  font-size: 15px;
  text-align: left;
  font-weight: 400;
}
.page_doctor .profile .inner .item .txt_box table tr th {
  width: 80px;
}

.illust_heading {
  display: flex;
  align-items: center;
  gap: 0.5em;
}
.illust_heading img {
  width: 1.5em;
}

svg {
  display: none;
}

.introduction {
  text-align: center;
}
@media screen and (max-width: 600px) {
  .introduction {
    text-align: left;
  }
  .introduction br {
    display: none;
  }
}

.ribbon {
  margin-bottom: 40px;
  padding-top: 100px;
}
.ribbon .txt {
  width: 100%;
  display: block;
  font-size: 22px;
  line-height: 1;
  letter-spacing: 0.08em;
  padding: 40px 20px;
  position: relative;
}
.ribbon .txt::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  box-shadow: 5px 5px 40px -20px rgba(0, 0, 0, 0.2);
  background: #fff;
  z-index: -1;
  border-radius: 10px;
  filter: url("#svg_filter");
}
.ribbon .txt img {
  width: 60px;
  position: absolute;
  top: -30px;
  right: 0;
  left: 0;
  margin: auto;
}
.ribbon .txt h4 {
  text-align: center;
  margin-bottom: 2em;
}
.ribbon .txt ul {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1em 1.5em;
}
@media screen and (max-width: 900px) {
  .ribbon .txt ul {
    grid-template-columns: repeat(1, 1fr);
  }
}
.ribbon .txt ul li {
  font-size: 16px;
  line-height: 1.8;
}
.ribbon .txt ul li b {
  position: relative;
  font-weight: normal;
  font-weight: 500;
}
.ribbon .txt ul li b::before {
  content: "";
  display: block;
  width: 106%;
  height: 0.6em;
  background: #fff1d0;
  position: absolute;
  bottom: -0.1em;
  border-radius: 2px;
  z-index: -1;
  left: -3%;
  filter: url("#svg_filter");
}

.list_row ul {
  display: flex;
  gap: 20px;
  padding: 40px 0 20px;
}
@media screen and (max-width: 1000px) {
  .list_row ul {
    flex-direction: column;
  }
}
.list_row ul li {
  flex: 1;
  position: relative;
  padding: 40px 20px 20px;
}
.list_row ul li::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  box-shadow: 5px 5px 40px -20px rgba(0, 0, 0, 0.2);
  background: #fff;
  z-index: -1;
  border-radius: 10px;
  filter: url("#svg_filter");
}
.list_row ul li img {
  width: 60px;
  position: absolute;
  top: -20px;
  right: 0;
  left: 0;
  margin: auto;
}
.list_row ul li h3 {
  padding: 0;
  margin: 0;
  font-size: 18px;
  text-align: center;
  margin-bottom: 0.5em;
  line-height: 1.2;
}
.list_row ul li p {
  font-size: 15px;
}

.list_column ul li {
  margin-bottom: 20px;
}
.list_column ul li h3 {
  position: relative;
  display: inline-block;
  padding: 0.1em 0.8em;
  color: #fff;
  font-size: 17px;
  font-weight: 500;
  transform: rotate(-5deg);
  margin: 0;
  margin-bottom: 1em;
}
.list_column ul li h3::after {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  position: absolute;
  left: 1em;
  bottom: -0.2em;
  border-radius: 2px;
  background: #111;
  z-index: -1;
  filter: url("#svg_filter");
  transform: rotate(45deg);
}
.list_column ul li h3::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  box-shadow: 5px 5px 40px -20px rgba(0, 0, 0, 0.2);
  background: #111;
  z-index: -1;
  border-radius: 5px;
  filter: url("#svg_filter");
}
.list_column ul li p {
  padding-left: 2em;
}/*# sourceMappingURL=style.css.map */