@charset "UTF-8";
body main:before {
  content: "";
  position: absolute;
  left: 0;
  top: 100px;
  width: 100%;
  height: 1000px;
  background: var(--bg);
}
@media screen and (max-width: 768px) {
  body main:before {
    content: "";
    position: absolute;
    left: 10%;
    top: 0;
    width: 90%;
    height: calc(40vw + 40px);
    background: var(--bg);
  }
}
body .sect_bnr {
  position: relative;
  z-index: 1;
  margin: 80px 0;
}
@media screen and (max-width: 768px) {
  body .sect_bnr {
    position: relative;
    z-index: 1;
    margin: 40px 0;
  }
}
body .subpage_title {
  width: calc(100% - 80px);
  height: 530px;
  margin-left: 80px;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
}
body .subpage_title .heading {
  position: absolute;
  left: 50px;
  bottom: 50px;
}
body .subpage_title .heading em {
  display: block;
  line-height: 1;
  text-align: left;
  color: var(--black);
  font-family: var(--crimson);
  font-size: 13rem;
  opacity: 0.1;
}
body .subpage_title .heading .heading_text {
  color: var(--black);
  font-family: var(--mincho);
  font-size: 4.2rem;
  padding-top: 0;
}
@media screen and (max-width: 768px) {
  body .subpage_title {
    width: 100%;
    margin: 0;
    height: 40vw;
  }
  body .subpage_title .heading {
    left: 20px;
    bottom: 20px;
  }
  body .subpage_title .heading em {
    font-size: 10vw;
  }
  body .subpage_title .heading .heading_text {
    font-size: 5vw;
    padding-top: 0px;
  }
}
body .Breadcrumb_box {
  text-align: right;
  padding: 10px 10px 10px;
}
body .Breadcrumb_box .Breadcrumb {
  line-height: 1.5;
}
body .Breadcrumb_box .Breadcrumb > span + span:before {
  content: "/";
  margin: 0 6px;
}
body .Breadcrumb_box .Breadcrumb span {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--brown);
}
body .Breadcrumb_box .Breadcrumb span a:hover {
  color: var(--gold);
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  body .Breadcrumb_box .Breadcrumb {
    line-height: 1.3;
  }
  body .Breadcrumb_box .Breadcrumb > span + span:before {
    content: "/";
    margin: 0 6px;
  }
  body .Breadcrumb_box .Breadcrumb span {
    font-size: 1rem;
  }
}
body section {
  width: 1028px;
  margin: 100px auto;
  position: relative;
  z-index: 1;
}
body section .sect_ttl {
  margin: 0 auto 80px;
  text-align: left;
  position: relative;
  padding-bottom: 40px;
}
body section .sect_ttl:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 44px;
  height: 2px;
  background: var(--gold);
}
body section .sect_ttl .en {
  font-size: 11rem;
  opacity: 0.05;
}
body section .sect_ttl .sect_ttl_text {
  position: relative;
  z-index: 1;
  margin-top: -50px;
  font-size: 4rem;
}
body section .sect_ttl ~ p {
  text-align: left;
  padding-bottom: 60px;
}
body section .inner {
  display: flex;
  flex-direction: column;
  gap: 80px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  body section {
    width: 100%;
    padding: 0 20px;
    margin: 0 auto 80px;
    box-sizing: border-box;
  }
  body section .sect_ttl {
    margin: 0 auto 30px;
    padding-bottom: 20px;
  }
  body section .sect_ttl:before {
    width: 34px;
    height: 2px;
  }
  body section .sect_ttl .en {
    font-size: 16vw;
    opacity: 0.05;
  }
  body section .sect_ttl .sect_ttl_text {
    position: relative;
    z-index: 1;
    margin-top: -8vw;
    font-size: 8vw;
  }
  body section .sect_ttl ~ p {
    text-align: justify;
    padding: 0 0 20px;
  }
  body section .inner {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 100%;
    margin: 0;
  }
  body section ~ section {
    margin-top: 80px;
  }
}
body .wide_content {
  position: relative;
  width: 100%;
}
body .wide_content .text {
  padding-top: 40px;
}
body .wide_content .text .wide_content_ttl {
  font-size: 2.5rem;
  font-weight: 400;
  padding-bottom: 30px;
}
body .wide_content .center {
  display: block;
  width: fit-content;
  margin: 0 auto;
}
body .wide_content p small {
  display: block;
  font-size: 1.2rem;
}
@media screen and (max-width: 768px) {
  body .wide_content {
    position: relative;
    width: 100%;
  }
  body .wide_content figure {
    margin-left: -20px;
    width: calc(100% + 40px);
  }
  body .wide_content figure img {
    width: 100%;
    height: 50vw;
    object-fit: cover;
  }
  body .wide_content .text {
    padding: 20px 0 0;
  }
  body .wide_content .text .wide_content_ttl {
    font-size: 2rem;
    padding-bottom: 20px;
  }
}
body .textbox01 {
  display: flex;
  justify-content: flex-start;
  gap: 60px;
}
body .textbox01.reverse {
  flex-direction: row-reverse;
}
body .textbox01 figure {
  flex-shrink: 0;
  padding: 0;
}
body .textbox01 .text {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
body .textbox01 .text .text_ttl {
  padding-left: 15px;
  font-size: 2.5rem;
  position: relative;
}
body .textbox01 .text .text_ttl:before {
  content: "";
  position: absolute;
  left: 0;
  top: calc(50% - 3px);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--line);
}
body .textbox01 .text .textbox_ttl01 {
  font-size: 2.5rem;
  line-height: 1.5;
}
body .textbox01 .text .textbox_ttl01.flex {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}
body .textbox01 .text .textbox_ttl01.flex em {
  flex-shrink: 0;
  width: 90px;
  height: 90px;
  background: #c3a863;
  color: #fff;
  font-size: 2rem;
  text-box: trim-both cap alphabetic;
  display: flex;
  justify-content: center;
  align-items: center;
  letter-spacing: 0.1em;
  border-radius: 4px;
}
body .textbox01 .text .textbox_ttl01.gold {
  display: flex;
  justify-content: flex-start;
  gap: 10px;
  color: var(--gold);
}
body .textbox01 .text .textbox_ttl01.gold span {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #c3a863;
  color: #fff;
  font-size: 2rem;
}
body .textbox01 .text .textbox_ttl02 {
  font-size: 2.3rem;
}
body .textbox01 .text p small {
  display: block;
  font-size: 1.2rem;
}
body .name {
  padding-top: 20px;
  text-align: left;
}
body .name span {
  display: block;
  line-height: 1.5;
  padding-bottom: 10px;
}
body .name em {
  display: block;
  font-size: 2.1rem;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  body .textbox01 {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  body .textbox01.reverse {
    flex-direction: column;
  }
  body .textbox01 figure {
    text-align: center;
  }
  body .textbox01 .text {
    display: flex;
    flex-direction: column;
    padding: 0;
    gap: 10px;
  }
  body .textbox01 .text p small {
    display: block;
    font-size: 1.1rem;
  }
  body .textbox01 .text .text_ttl {
    font-size: 1.8rem;
  }
  body .textbox01 .text .text_ttl:before {
    top: calc(50% - 2px);
  }
  body .textbox01 .text .textbox_ttl01 {
    font-size: 2rem;
    line-height: 1.5;
  }
  body .textbox01 .text .textbox_ttl01.flex {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
  }
  body .textbox01 .text .textbox_ttl01.flex em {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    border-radius: 2px;
  }
  body .textbox01 .text .textbox_ttl02 {
    font-size: 1.8rem;
  }
  body .name {
    padding-top: 20px;
    text-align: right;
  }
  body .name span {
    display: block;
    font-size: 1.2rem;
  }
  body .name em {
    display: block;
    font-size: 1.8rem;
  }
}
body .line {
  position: relative;
}
body .line:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
}
body .line span {
  display: block;
  color: var(--gold);
  font-size: 3rem;
  font-weight: 400;
  padding-bottom: 20px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
}
body .line span em {
  flex-shrink: 0;
  width: 90px;
  height: 90px;
  background: #c3a863;
  color: #fff;
  font-size: 2rem;
  text-box: trim-both cap alphabetic;
  display: flex;
  justify-content: center;
  align-items: center;
  letter-spacing: 0.1em;
  border-radius: 4px;
}
body .line ~ p {
  margin-top: -30px;
}
@media screen and (max-width: 768px) {
  body .line {
    font-weight: 400;
    position: relative;
  }
  body .line span {
    font-size: 2.2rem;
    padding-bottom: 10px;
  }
  body .line span em {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    border-radius: 2px;
  }
  body .line ~ p {
    padding: 0;
    margin-top: -20px;
  }
}
body .bg_box {
  position: relative;
  padding: 80px 0;
}
body .bg_box:before {
  content: "";
  position: absolute;
  left: -70px;
  top: 0;
  width: calc(100% + 140px);
  height: 100%;
  background: #fcfaf4;
  z-index: -1;
}
body .bg_box .bg_box_ttl {
  font-size: 2.8rem;
  line-height: 1;
  padding: 3px 0 3px 20px;
  margin-bottom: 30px;
  position: relative;
}
body .bg_box .bg_box_ttl:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: var(--brown01);
}
body .bg_box .bg_box_ttl ~ p {
  padding-bottom: 40px;
}
@media screen and (max-width: 768px) {
  body .bg_box {
    position: relative;
    padding: 30px 20px;
  }
  body .bg_box:before {
    left: 0px;
    top: 0;
    width: 100%;
    height: 100%;
    background: #fcfaf4;
  }
  body .bg_box .bg_box_ttl {
    font-size: 2rem;
    padding: 2px 0 2px 15px;
    margin-bottom: 10px;
  }
  body .bg_box .bg_box_ttl:before {
    width: 2px;
  }
  body .bg_box .bg_box_ttl ~ p {
    padding-bottom: 20px;
  }
}
body .qa_box {
  width: 100%;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
body .qa_box .item {
  margin: 0 auto 75px;
}
body .qa_box .item:last-child {
  margin-bottom: 0;
}
body .qa_box .item .qa_ttl {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}
body .qa_box .item .qa_ttl em {
  flex-shrink: 0;
  color: #fff;
  display: block;
  line-height: 1.3;
  text-align: justify;
  font-weight: 300;
  font-family: var(--oswald);
  font-size: 2.3rem;
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--black);
  display: flex;
  justify-content: center;
  align-items: center;
}
body .qa_box .item .qa_ttl span {
  font-size: 2.3rem;
}
body .qa_box .item p {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
}
body .qa_box .item p em {
  flex-shrink: 0;
  color: #fff;
  display: block;
  line-height: 1.3;
  text-align: justify;
  font-weight: 300;
  font-family: var(--oswald);
  font-size: 2.3rem;
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #7b6e29;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  body .qa_box .item {
    margin: 0 auto 20px;
  }
  body .qa_box .item:last-child {
    margin-bottom: 0;
  }
  body .qa_box .item .qa_ttl {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
  }
  body .qa_box .item .qa_ttl em {
    flex-shrink: 0;
    font-size: 1.6rem;
    width: 36px;
    height: 36px;
  }
  body .qa_box .item .qa_ttl span {
    font-size: 1.65rem;
  }
  body .qa_box .item p {
    gap: 10px;
  }
  body .qa_box .item p em {
    flex-shrink: 0;
    font-size: 1.6rem;
    width: 36px;
    height: 36px;
  }
}
body .line_box {
  width: 100%;
  padding: 40px;
  position: relative;
  box-sizing: border-box;
  background: var(--bg);
}
body .line_box .box_ttl {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 25px;
  margin-bottom: 20px;
  color: var(--gold);
}
body .line_box .box_ttl .icon-icon01 {
  font-size: 8rem;
}
body .line_box .box_ttl em {
  font-family: var(--mincho);
  font-size: 2.3rem;
  line-height: 1.5;
}
body .line_box .box_inner {
  display: flex;
  justify-content: flex-start;
  gap: 50px;
}
body .line_box .box_inner p {
  width: 100%;
}
body .line_box .box_inner figure {
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  body .line_box {
    width: calc(100% + 40px);
    padding: 30px 20px;
    box-sizing: border-box;
    margin-left: -20px;
  }
  body .line_box:before {
    height: 3px;
  }
  body .line_box:after {
    height: 3px;
  }
  body .line_box .box_ttl {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
  }
  body .line_box .box_ttl .icon-icon01 {
    font-size: 5rem;
  }
  body .line_box .box_ttl em {
    font-size: 1.8rem;
    line-height: 1.5;
  }
  body .line_box .box_inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  body .line_box .box_inner p {
    order: 1;
  }
  body .line_box .box_inner figure {
    order: 0;
    flex-shrink: 0;
  }
  body .line_box .box_inner figure img {
    width: 100%;
  }
}
body .table_type01 {
  table-layout: fixed;
  width: 100%;
  box-sizing: border-box;
  border-collapse: separate;
  border-spacing: 0;
  margin: 0 auto;
  font-size: 1.4rem;
  font-weight: 400;
}
body .table_type01.ortho_table tbody td {
  font-family: var(--sans);
  font-size: 1.5rem;
}
body .table_type01.price_table .noblock {
  border: none;
  background: none;
}
body .table_type01.price_table .center {
  text-align: center;
  font-size: 1.8rem;
}
body .table_type01.price_table tbody tr th {
  padding: 20px 0px;
  background: #fcfaf4;
}
body .table_type01.price_table tbody tr td {
  padding: 20px 0px;
}
body .table_type01.price_table tbody .total th {
  border-top: 2px solid var(--line);
  border-bottom: 2px solid var(--line);
  padding: 30px 0px;
  background: #fcfaf4;
  font-weight: 600;
}
body .table_type01.price_table tbody .total td {
  border-top: 2px solid var(--line);
  border-bottom: 2px solid var(--line);
  font-weight: 600;
  font-size: 1.2em;
}
body .table_type01.clinic tbody tr th {
  width: 180px;
  background: #fcfaf4;
  font-size: 1.6rem;
  padding: 24px;
}
body .table_type01.clinic tbody tr td {
  padding: 24px;
  font-size: 1.6rem;
  text-align: left;
}
body .table_type01.clinic tbody tr td em {
  display: block;
  width: fit-content;
  margin: 1rem 0;
  font-size: 0.9em;
  padding: 10px 20px;
  text-box: trim-both cap alphabetic;
  background: var(--gold);
  color: #fff;
}
body .table_type01.clinic tbody tr td dl dt {
  background: var(--bg);
  font-size: 1.4rem;
  padding: 10px;
  text-box: trim-both cap alphabetic;
  margin-bottom: 10px;
}
body .table_type01.clinic tbody tr td dl dd ~ dt {
  margin-top: 1em;
}
body .table_type01.time thead tr th {
  padding: 10px;
  line-height: 1;
}
body .table_type01.time tbody tr th {
  font-size: 1.6rem;
  padding: 24px;
}
body .table_type01.time tbody tr td {
  padding: 24px;
  font-size: 1.6rem;
}
body .table_type01 caption {
  text-align: left;
  font-family: var(--mincho);
  font-size: 2.4rem;
  padding-bottom: 20px;
}
body .table_type01 caption span {
  font-size: 1.6rem;
  display: block;
}
body .table_type01 caption.example {
  gap: 20px;
  width: 100%;
}
body .table_type01 caption.example span {
  display: inline-block;
  white-space: nowrap;
  color: #fff;
  line-height: 1;
  padding: 15px 20px;
  font-family: var(--mincho);
  background: #c3a863;
  border-radius: 5px;
  margin-right: 20px;
}
body .table_type01 thead tr th {
  padding: 10px;
  box-sizing: border-box;
  text-align: center;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.5;
  white-space: nowrap;
  font-weight: 400;
  text-align: center;
  background: #f8f5ee;
  border-top: 1px solid var(--line);
  vertical-align: middle;
}
body .table_type01 thead tr th.bg_white {
  background: #fff;
}
body .table_type01 thead .bg_thead th {
  background: #f7e6c7;
}
body .table_type01 tbody tr th {
  padding: 20px;
  box-sizing: border-box;
  vertical-align: middle;
  text-align: center;
  font-weight: 400;
  border-top: 1px solid var(--line);
  font-size: 1.6rem;
  line-height: 1.5;
  white-space: nowrap;
  text-align: center;
  background: #ffffff;
}
body .table_type01 tbody tr td {
  padding: 20px;
  border-top: 1px solid var(--line);
  vertical-align: middle;
  line-height: 1.35;
  font-size: 1.6rem;
  text-align: center;
  background: #ffffff;
}
body .table_type01 tbody tr td small {
  display: block;
  font-weight: normal;
  font-size: 1rem;
  line-height: 1;
  padding-top: 5px;
}
body .table_type01 tbody tr td.bold {
  font-weight: 600;
}
body .table_type01 tbody .bg_color th, body .table_type01 tbody .bg_color td {
  background: #fffbf3;
}
body .table_type01 tbody tr:last-child th,
body .table_type01 tbody tr:last-child td {
  border-bottom: 1px solid var(--line);
}
body .table_type01 tfoot tr td {
  font-weight: 400;
  text-align: right;
  padding-top: 10px;
  font-size: 1.2rem;
}
@media screen and (max-width: 768px) {
  body .table_type01 {
    width: 100%;
    margin: 0 auto;
  }
  body .table_type01.ortho_table tbody td {
    font-family: var(--sans);
    font-size: 1.1rem;
  }
  body .table_type01.price_table .noblock {
    border: none;
    border-right: 1px solid var(--line);
    background: none;
  }
  body .table_type01.price_table .center {
    text-align: center;
    font-size: 1.3rem;
  }
  body .table_type01.price_table thead tr th img {
    max-width: 100%;
  }
  body .table_type01.price_table tbody tr th {
    padding: 10px 5px;
    background: #fcfaf4;
    text-align: left;
  }
  body .table_type01.price_table tbody tr td {
    padding: 10px 5px;
  }
  body .table_type01.price_table tbody .total th {
    padding: 15px 5px;
  }
  body .table_type01.clinic tbody tr th {
    width: 100px;
    background: #fcfaf4;
    font-size: 1.2rem;
    padding: 10px;
  }
  body .table_type01.clinic tbody tr td {
    padding: 10px;
    font-size: 1.2rem;
    text-align: left;
  }
  body .table_type01.time thead tr th {
    padding: 10px 0;
    line-height: 1;
    white-space: nowrap;
  }
  body .table_type01.time thead tr th span {
    display: none;
  }
  body .table_type01.time tbody tr th {
    font-size: 1.1rem;
    padding: 10px 0;
  }
  body .table_type01.time tbody tr td {
    padding: 10px 0;
    font-size: 1.1rem;
  }
  body .table_type01 caption {
    text-align: left;
    font-size: 1.8rem;
    padding-bottom: 10px;
  }
  body .table_type01 caption.example {
    gap: 20px;
    width: 100%;
  }
  body .table_type01 caption.example span {
    display: block;
    white-space: nowrap;
    padding: 5px 10px;
    font-size: 1.2rem;
    background: #c3a863;
    border-radius: 5px;
    margin-right: 0px;
    width: fit-content;
  }
  body .table_type01 thead tr th {
    padding: 5px;
    font-size: 1rem;
    white-space: normal;
    line-height: 1.5;
  }
  body .table_type01 thead tr th.bg_white {
    padding: 10px;
  }
  body .table_type01 tbody tr th {
    padding: 10px;
    font-size: 1.2rem;
    white-space: normal;
  }
  body .table_type01 tbody tr td {
    padding: 10px;
    font-size: 1.2rem;
  }
  body .table_type01 tbody tr td small {
    display: block;
    font-weight: normal;
    font-size: 1rem;
    line-height: 1;
    padding-top: 5px;
  }
  body .table_type01 tfoot tr td {
    padding-top: 5px;
    font-size: 1rem;
  }
}
body .small_box {
  background: #f9f9f9;
  padding: 35px;
}
body .small_box em {
  display: block;
  font-weight: 500;
  line-height: 1.3;
  font-size: 1.3rem;
  padding-bottom: 8px;
}
body .small_box p {
  font-size: 1.2rem;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  body .small_box {
    padding: 16px;
  }
  body .small_box em {
    font-size: 1.2rem;
    padding-bottom: 8px;
  }
  body .small_box p {
    font-size: 1rem;
  }
}
body .point_box {
  display: flex;
  justify-content: space-between;
  gap: 35px;
}
body .point_box .item {
  width: calc((100% - 70px) / 3);
}
body .point_box .item figure {
  position: relative;
}
body .point_box .item figure figcaption {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  margin: 0 auto;
  border-radius: 50%;
  background: #999277;
  display: flex;
  justify-content: center;
  align-items: center;
}
body .point_box .item figure figcaption span small {
  display: block;
  line-height: 1;
  color: #fff;
  font-size: 1.3rem;
}
body .point_box .item figure figcaption span em {
  padding-top: 5px;
  text-align: center;
  display: block;
  line-height: 1;
  font-size: 2.6rem;
  color: #fff;
}
body .point_box .item .item_ttl {
  text-align: center;
  font-size: 2.3rem;
  padding: 30px 0;
}
@media screen and (max-width: 768px) {
  body .point_box {
    display: flex;
    flex-direction: column;
    padding: 0 20px;
    gap: 20px;
  }
  body .point_box .item {
    width: 100%;
  }
  body .point_box .item figure {
    position: relative;
  }
  body .point_box .item figure img {
    width: 100%;
  }
  body .point_box .item figure figcaption {
    width: 60px;
    height: 60px;
  }
  body .point_box .item figure figcaption span small {
    font-size: 1rem;
  }
  body .point_box .item figure figcaption span em {
    padding-top: 2px;
    font-size: 2rem;
  }
  body .point_box .item .item_ttl {
    text-align: center;
    font-size: 2rem;
    padding: 20px 0;
  }
}
body .textbox02 {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
body .textbox02.narrow {
  padding: 50px;
  background: var(--bg);
  gap: 40px;
}
body .textbox02.narrow .text .text_ttl {
  font-size: 2.3rem;
}
body .textbox02 .text .text_ttl {
  padding-left: 15px;
  font-size: 2.5rem;
  margin-bottom: 8px;
  position: relative;
}
body .textbox02 .text .text_ttl:before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--line);
}
@media screen and (max-width: 768px) {
  body .textbox02 {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  body .textbox02 .text .text_ttl {
    font-size: 1.8rem;
  }
  body .textbox02 .text .text_ttl:before {
    top: calc(50% - 2px);
  }
}
body .flex_box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}
body .flex_box .flex_box_name {
  width: 100%;
  font-size: 2.5rem;
  line-height: 1.5;
}
body .flex_box .item {
  width: calc((100% - 40px) / 2);
}
body .flex_box .item .text .text_ttl {
  font-size: 2.5rem;
  padding: 30px 0;
}
@media screen and (max-width: 768px) {
  body .flex_box {
    display: flex;
    flex-direction: column;
    padding: 0;
    gap: 20px;
  }
  body .flex_box .flex_box_name {
    width: 100%;
    font-size: 2rem;
    line-height: 1.5;
  }
  body .flex_box .item {
    width: 100%;
  }
  body .flex_box .item .text .text_ttl {
    font-size: 2rem;
    padding: 20px 0;
    text-align: center;
  }
}
body .flow .item {
  display: flex;
  justify-content: flex-start;
  flex-direction: row-reverse;
  gap: 50px;
  padding-bottom: 50px;
  position: relative;
}
body .flow .item:before {
  content: "";
  position: absolute;
  left: 21px;
  top: 44px;
  width: 0;
  height: calc(100% - 44px);
  border-right: 2px solid #7b6e29;
}
body .flow .item figure {
  flex-shrink: 0;
}
body .flow .item .text {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  gap: 25px;
}
body .flow .item .text .flow_num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #7b6e29;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--oswald);
  color: #fff;
  font-size: 2rem;
  font-weight: 400;
}
body .flow .item .text .inner_box {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
body .flow .item .text .inner_box .flow_ttl {
  font-size: 2.4rem;
  line-height: 1.5;
  color: #7b6e29;
}
body .flow .item .text .inner_box .flow_ttl02 {
  font-size: 1.2em;
  line-height: 1.5;
  color: var(--black);
}
body .flow .item .text .inner_box .flow_ttl02 + p {
  margin-top: -20px;
}
body .flow .item .text .inner_box .btnbox {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 30px;
}
body .flow .item .text .inner_box .btnbox .tel .icon-tel_num {
  font-size: 2.4rem;
}
body .flow .item .text .inner_box .btnbox .btn {
  max-width: 210px;
  margin: 0;
}
body .flow .item .text .inner_box .btnbox .btn .icon-rsv {
  font-size: 2.2rem;
  padding-right: 10px;
}
body .flow .item:last-child {
  padding-bottom: 0;
}
body .flow .item:last-child:before {
  content: none;
}
@media screen and (max-width: 768px) {
  body .flow .item {
    display: flex;
    flex-direction: column;
    padding: 0 0 30px;
    gap: 20px;
  }
  body .flow .item:before {
    left: 17px;
    top: 36px;
    width: 0;
    height: calc(100% - 36px);
  }
  body .flow .item figure {
    order: 1;
    flex-shrink: 0;
    padding-left: 51px;
    margin-right: -20px;
  }
  body .flow .item .text {
    order: 0;
    display: flex;
    justify-content: flex-start;
    gap: 15px;
  }
  body .flow .item .text .flow_num {
    width: 36px;
    height: 36px;
    font-size: 1.6rem;
  }
  body .flow .item .text .inner_box {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  body .flow .item .text .inner_box .flow_ttl {
    font-size: 1.8rem;
    line-height: 1.5;
  }
  body .flow .item .text .inner_box .btnbox {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  body .flow .item .text .inner_box .btnbox .tel {
    margin: 0;
  }
  body .flow .item .text .inner_box .btnbox .tel .icon-tel_num {
    font-size: 2.2rem;
  }
  body .flow .item .text .inner_box .btnbox .btn {
    max-width: 200px;
    margin: 0;
  }
  body .flow .item .text .inner_box .btnbox .btn .icon-rsv {
    font-size: 2.2rem;
    padding-right: 10px;
  }
  body .flow .item:last-child {
    padding-bottom: 0;
  }
  body .flow .item:last-child:before {
    content: none;
  }
}
body .icon_box {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
body .icon_box .item {
  display: flex;
  justify-content: flex-start;
  gap: 35px;
}
body .icon_box .item figure {
  width: 116px;
  height: 116px;
  border-radius: 50%;
  background: #f7f7f3;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}
body .icon_box .item figure .icon-icon09 {
  font-size: 6rem;
}
body .icon_box .item .text .text_ttl {
  font-size: 2.3rem;
  padding-bottom: 10px;
}
@media screen and (max-width: 768px) {
  body .icon_box {
    display: flex;
    flex-direction: column;
    padding: 0 20px;
    gap: 30px;
  }
  body .icon_box .item {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  body .icon_box .item figure {
    width: 86px;
    height: 86px;
    margin: 0 auto;
  }
  body .icon_box .item figure .icon-icon09 {
    font-size: 5rem;
  }
  body .icon_box .item .text .text_ttl {
    font-size: 1.8rem;
    text-align: center;
    padding-bottom: 10px;
  }
}
body .case_box .case_ttl {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  margin-bottom: 30px;
}
body .case_box .case_ttl span {
  position: relative;
  background: #fff;
  position: relative;
  font-size: 2.4rem;
}
body .case_box .case_table dl {
  display: flex;
  justify-content: flex-start;
}
body .case_box .case_table dl dt {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 25%;
  background: #fcfaf4;
  padding: 10px;
  border: 1px solid var(--line);
  border-right: 0;
  box-sizing: border-box;
  flex-shrink: 0;
}
body .case_box .case_table dl dd {
  min-width: 75%;
  padding: 10px;
  box-sizing: border-box;
  border: 1px solid var(--line);
  text-align: center;
  background: #fff;
}
body .case_box .case_table dl dd p {
  text-align: left;
}
body .case_box .case_table dl dd p em {
  display: block;
  font-weight: 800;
  font-size: 1.1em;
}
body .case_box .case_table dl dd ~ dt {
  margin-left: 10px;
}
body .case_box .case_table dl.narrow dt {
  width: 25%;
}
body .case_box .case_table dl.narrow dd {
  width: calc(25% - 5px);
  min-width: auto;
}
body .case_box .case_table dl ~ dl {
  margin-top: 10px;
}
body .case_box .case_images {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 110px 70px 70px;
  position: relative;
}
body .case_box .case_images.type02 {
  padding-left: 0;
  padding-right: 0;
}
body .case_box .case_images.type03 {
  flex-direction: column;
  gap: 20px;
  padding-left: 0;
  padding-right: 0;
}
body .case_box .case_images.type03 figure figcaption {
  position: absolute;
  left: 0;
  top: 0;
  text-align: left;
  padding-left: 37px;
}
body .case_box .case_images.type03 figure figcaption:before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 25px;
  height: 25px;
  background: rgba(86, 81, 63, 0.5);
  clip-path: polygon(0 9px, 9px 9px, 9px 0, 16px 0, 16px 9px, 25px 9px, 25px 16px, 16px 16px, 16px 25px, 9px 25px, 9px 16px, 0 16px);
}
body .case_box .case_images.type03 .icon-case-arrow {
  transform: rotate(90deg);
}
body .case_box .case_images figure {
  position: relative;
}
body .case_box .case_images figure figcaption {
  position: absolute;
  left: 0;
  top: -50px;
  width: 100%;
  text-align: center;
  font-size: 2rem;
}
body .case_box .case_images .icon-case-arrow {
  font-size: 3rem;
}
@media screen and (max-width: 768px) {
  body .case_box .case_ttl {
    padding: 0;
    margin-bottom: 10px;
  }
  body .case_box .case_ttl span {
    position: relative;
    background: #fff;
    position: relative;
    font-size: 1.8rem;
    padding: 0;
  }
  body .case_box .case_table {
    padding: 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
  }
  body .case_box .case_table dl {
    display: flex;
    width: 100%;
    flex-direction: column;
  }
  body .case_box .case_table dl dt {
    width: 100%;
    padding: 0 5px;
    border: 1px solid var(--line);
    box-sizing: border-box;
    font-size: 1.2rem;
    flex-shrink: 0;
    justify-content: flex-start;
  }
  body .case_box .case_table dl dd {
    min-width: 100%;
    padding: 5px;
    box-sizing: border-box;
    border-top: 0;
    font-size: 1.2rem;
  }
  body .case_box .case_table dl dd p {
    text-align: left;
    font-size: 1.2rem;
    line-height: 1.6;
  }
  body .case_box .case_table dl dd ~ dt {
    margin-left: 0px;
    margin-top: 10px;
  }
  body .case_box .case_table dl.narrow {
    display: grid;
    grid-template-columns: 1fr 10px 1fr;
    grid-template-rows: auto auto;
  }
  body .case_box .case_table dl.narrow dt:nth-child(1) {
    width: 100%;
    grid-column: 1/2;
    grid-row: 1/2;
  }
  body .case_box .case_table dl.narrow dd:nth-child(2) {
    width: 100%;
    grid-column: 1/2;
    grid-row: 2/3;
  }
  body .case_box .case_table dl.narrow dt:nth-child(3) {
    margin-top: 0;
    width: 100%;
    grid-column: 3/4;
    grid-row: 1/2;
  }
  body .case_box .case_table dl.narrow dd:nth-child(4) {
    width: 100%;
    grid-column: 3/4;
    grid-row: 2/3;
  }
  body .case_box .case_table dl ~ dl {
    margin-top: 0;
  }
  body .case_box .case_images {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 40px 20px 20px;
    position: relative;
  }
  body .case_box .case_images.type02 {
    padding-left: 0;
    padding-right: 0;
  }
  body .case_box .case_images.type03 {
    flex-direction: column;
    gap: 10px;
    padding-left: 20px;
    padding-right: 20px;
  }
  body .case_box .case_images.type03 figure figcaption {
    position: absolute;
    left: 0;
    top: 0;
    text-align: left;
    padding-left: 30px;
    font-size: 1.4rem;
  }
  body .case_box .case_images.type03 figure figcaption:before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 20px;
    height: 20px;
    background: rgba(86, 81, 63, 0.5);
    clip-path: polygon(0 7px, 7px 7px, 7px 0, 13px 0, 13px 7px, 20px 7px, 20px 13px, 13px 13px, 13px 20px, 7px 20px, 7px 13px, 0 13px);
  }
  body .case_box .case_images.type03 .icon-case_arrow {
    transform: rotate(90deg);
  }
  body .case_box .case_images figure {
    position: relative;
  }
  body .case_box .case_images figure figcaption {
    top: -30px;
    font-size: 1.2rem;
  }
  body .case_box .case_images .icon-case_arrow {
    font-size: 2rem;
  }
}
body .risk {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px;
  box-sizing: border-box;
  background: #fcfcfc;
}
body .risk .risk_inner {
  width: 100%;
  max-height: 120px;
  position: relative;
  padding-right: 20px;
}
body .risk .risk_inner h3 {
  font-size: 1.5rem;
  margin-bottom: 1em;
}
body .risk .risk_inner em {
  display: block;
  font-size: 1.3rem;
}
body .risk .risk_inner p {
  font-size: 1.1rem;
}
body .risk .risk_inner p ~ em {
  padding-top: 1em;
}
body .risk .risk_inner p ~ h3 {
  padding-top: 2em;
}
@media screen and (max-width: 768px) {
  body .risk {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 20px;
    box-sizing: border-box;
  }
  body .risk .risk_inner {
    width: 100%;
    max-height: 120px;
    padding-right: 10px;
    box-sizing: border-box;
  }
  body .risk .risk_inner h3 {
    font-size: 1.3rem;
  }
  body .risk .risk_inner em {
    display: block;
    font-size: 1.2rem;
  }
  body .risk .risk_inner p {
    font-size: 1rem;
  }
}
body .career {
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
body .career li {
  display: flex;
  justify-content: flex-start;
  gap: 10px;
  font-weight: 400;
}
body .career li span {
  width: 100px;
  font-weight: 500;
  flex-shrink: 0;
}
body .career li p {
  line-height: 1.8;
}
body .career li p a {
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  body .career {
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  body .career li {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  body .career li span {
    width: auto;
    font-size: 0.9em;
    font-weight: 500;
    flex-shrink: 0;
  }
  body .career li p {
    line-height: 1.5;
  }
  body .career li p a {
    text-decoration: underline;
  }
}
body .history {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
}
body .history .item {
  width: calc(50% - 16px);
  border: 1px solid var(--line);
  box-sizing: border-box;
}
body .history .item.wide {
  width: 100%;
}
body .history .item h3 {
  background: var(--bg);
  line-height: 50px;
  text-indent: 20px;
  font-size: 1.8rem;
}
body .history .item .item_inner {
  padding: 30px;
}
@media screen and (max-width: 768px) {
  body .history {
    display: flex;
    flex-direction: column;
    padding: 0;
    gap: 20px;
  }
  body .history .item {
    width: 100%;
    border: 1px solid var(--line);
    box-sizing: border-box;
  }
  body .history .item h3 {
    line-height: 40px;
    text-indent: 10px;
  }
  body .history .item .item_inner {
    padding: 20px;
  }
  body .history .item .item_inner ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  body .history .item .item_inner ul li {
    display: block;
    line-height: 1.5;
  }
  body .history .item .item_inner ul li span {
    width: 100%;
    font-size: 1.2rem;
    flex-shrink: 0;
  }
  body .history .item .item_inner ul li p {
    line-height: 1.5;
  }
}
body .formula {
  display: block;
}
body .formula .formula_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  gap: 20px;
  margin-top: 20px;
}
body .formula .formula_inner em {
  width: 220px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--brown01);
  background-size: cover;
  color: #fff;
  position: relative;
}
body .formula .formula_inner em:before {
  content: "=";
  font-size: 3rem;
  color: var(--brown01);
  font-weight: 300;
  position: absolute;
  left: 100%;
  top: 0;
  height: 80px;
  width: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: none;
}
body .formula .formula_inner em small {
  display: inline;
  padding: 0;
  font-size: 1rem;
}
body .formula .formula_inner p {
  width: 220px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  text-align: center;
  background: var(--bg01);
  font-weight: 500;
  position: relative;
}
body .formula .formula_inner p:before {
  content: "−";
  font-size: 3rem;
  color: var(--black);
  font-weight: 300;
  position: absolute;
  left: 100%;
  top: 0;
  height: 80px;
  width: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: none;
}
body .formula .formula_inner p span {
  color: var(--black);
  display: block;
  line-height: 1.2;
}
body .formula .formula_inner p span small {
  display: inline;
  padding: 0;
  font-size: 1rem;
}
body .formula .formula_inner p:last-child:before {
  content: none;
}
body .formula .formula_text {
  display: block;
  padding: 32px 0 0;
  font-family: var(--Noto-sans);
  font-size: 1.2rem;
  line-height: 1.8;
  background: #fff;
  border-radius: 8px;
}
@media screen and (max-width: 768px) {
  body .formula {
    display: block;
    padding: 0 20px;
  }
  body .formula .formula_inner {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
  body .formula .formula_inner em {
    width: 100%;
    height: 60px;
  }
  body .formula .formula_inner em:before {
    font-size: 3rem;
    position: absolute;
    left: calc(50% - 20px);
    top: 100%;
    height: 40px;
    width: 40px;
    transform: rotate(90deg);
  }
  body .formula .formula_inner em small {
    display: inline;
    padding: 0;
    font-size: 1rem;
  }
  body .formula .formula_inner p {
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    text-align: center;
    font-weight: 500;
    position: relative;
  }
  body .formula .formula_inner p:before {
    font-size: 3rem;
    position: absolute;
    left: calc(50% - 20px);
    top: 100%;
    height: 40px;
    width: 40px;
    transform: rotate(90deg);
  }
  body .formula .formula_text {
    padding: 20px 0 0;
    font-size: 1.1rem;
  }
}
body .Features_inner {
  position: relative;
  margin: 80px 0 0 !important;
}
body .Features_inner .slick-prev {
  top: 330px;
  left: 0;
  width: 60px;
  height: 60px;
  z-index: 10;
}
body .Features_inner .slick-prev:before {
  content: "\e91c";
  font-family: var(--icomoon);
  width: 60px;
  height: 60px;
  border-radius: 0 5px 5px 0;
  background: #fff;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.3rem;
  color: var(--brown01);
  opacity: 1;
  transition: all 0.4s ease;
}
body .Features_inner .slick-prev:hover:before {
  opacity: 0.8;
}
body .Features_inner .slick-next {
  top: 330px;
  right: 0;
  width: 60px;
  height: 60px;
  z-index: 10;
  transition: all 0.2s ease;
}
body .Features_inner .slick-next:before {
  content: "\e91b";
  font-family: var(--icomoon);
  width: 60px;
  height: 60px;
  border-radius: 5px 0 0 5px;
  background: #fff;
  border-left: 0;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.3rem;
  color: var(--brown01);
  opacity: 1;
  transition: all 0.4s ease;
}
body .Features_inner .slick-next:hover:before {
  opacity: 0.8;
}
body .Features_inner .slick-dots {
  bottom: 0px;
}
body .Features_inner .item {
  margin: 0 40px;
  max-width: 100%;
  width: 900px !important;
}
body .Features_inner .item .text {
  padding: 60px 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
body .Features_inner .item .text h3 {
  font-size: 2.4rem;
}
@media screen and (max-width: 768px) {
  body .Features_inner {
    position: relative;
    margin-bottom: 0;
    padding-bottom: 20px;
  }
  body .Features_inner:before {
    content: "";
    height: 80%;
  }
  body .Features_inner .slick-prev {
    top: 30vw;
    left: 0;
    right: auto;
    width: 40px;
    height: 40px;
    z-index: 10;
  }
  body .Features_inner .slick-prev:before {
    font-family: var(--icomoon);
    width: 40px;
    height: 40px;
    border-radius: 0 5px 5px 0;
    border-left: 0;
    box-sizing: border-box;
    font-size: 1.2rem;
  }
  body .Features_inner .slick-next {
    top: 30vw;
    right: 0;
    width: 40px;
    height: 40px;
    z-index: 10;
  }
  body .Features_inner .slick-next:before {
    font-family: var(--icomoon);
    width: 40px;
    height: 40px;
    border-radius: 5px 0 0 5px;
    border: 1px solid var(--green02);
    border-right: 0;
    font-size: 1.2rem;
  }
  body .Features_inner .slick-dots {
    bottom: 0px;
  }
  body .Features_inner .item {
    margin: 0 5px;
    max-width: 86vw;
    width: 86vw !important;
  }
  body .Features_inner .item .text {
    padding: 20px 10px 0;
    gap: 20px;
  }
  body .Features_inner .item .text h3 {
    font-size: 1.8rem;
  }
}
body .orthodontics_diff {
  width: 100%;
  height: 750px;
  background: url("../../orthodontics/img/wide02.webp") no-repeat center;
  background-size: auto 100%;
  position: relative;
}
body .orthodontics_diff .item {
  position: absolute;
  width: 350px;
  height: auto;
  background: rgba(255, 255, 255, 0.9);
  padding: 40px;
  box-sizing: border-box;
}
body .orthodontics_diff .item.left {
  left: 40px;
  bottom: 50px;
}
body .orthodontics_diff .item.right {
  right: 40px;
  bottom: 50px;
}
body .orthodontics_diff .item h3 {
  font-size: 2rem;
  padding-bottom: 20px;
}
body .orthodontics_diff .item p {
  line-height: 1.8;
  padding-bottom: 20px;
  white-space: nowrap;
}
body .orthodontics_diff .item .info {
  border-top: 1px solid var(--brown02);
  padding: 20px 0 0;
  line-height: 1.8;
}
body .orthodontics_diff .item .info small {
  display: block;
  font-size: 1rem;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  body .orthodontics_diff {
    width: 100%;
    height: auto;
    padding-top: 40vw;
    background: url("../../orthodontics/img/wide02.webp") no-repeat center top;
    background-size: auto 40vw;
    position: relative;
    display: flex;
    justify-content: space-between;
  }
  body .orthodontics_diff .item {
    position: static;
    width: 50%;
    height: auto;
    padding: 15px;
    box-sizing: border-box;
  }
  body .orthodontics_diff .item.left {
    left: 0px;
    bottom: 0;
  }
  body .orthodontics_diff .item.right {
    right: 0px;
    bottom: 0;
  }
  body .orthodontics_diff .item h3 {
    font-size: 1.6rem;
    padding-bottom: 10px;
    text-align: center;
  }
  body .orthodontics_diff .item p {
    font-size: 1.3rem;
    line-height: 1.5;
    white-space: normal;
    padding-bottom: 10px;
  }
  body .orthodontics_diff .item .info {
    border-top: 1px dotted var(--brown02);
    padding: 10px 0 0;
    line-height: 1.8;
    font-size: 1.3rem;
  }
  body .orthodontics_diff .item .info small {
    padding-top: 5px;
    font-size: 1rem;
    line-height: 1.5;
  }
  body .orthodontics_diff .item ~ .item {
    border-left: 1px dotted var(--brown01);
  }
}
body .clinicImages {
  padding-bottom: 30px;
}
body .clinicImages .slick-dots {
  bottom: 0;
}
body .clinicImages .slick-dots li {
  margin: 0;
}
body .clinicImages .item {
  width: 1060px;
  margin: 0 2px;
}
body .clinicImages ~ p {
  padding-bottom: 0 !important;
}
@media screen and (max-width: 768px) {
  body .clinicImages {
    margin-bottom: 10px !important;
    padding-bottom: 20px;
  }
  body .clinicImages .slick-dots {
    bottom: 0;
  }
  body .clinicImages .slick-dots li {
    margin: 0;
  }
  body .clinicImages .item {
    margin: 0 2px;
  }
  body .clinicImages .item img {
    width: 90vw;
  }
}
body .googlemap {
  width: 100%;
  height: 500px;
  position: relative;
}
body .googlemap iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
body .merit {
  position: relative;
}
body .merit .merit_Box {
  overflow: hidden;
  box-sizing: border-box;
}
body .merit .merit_Box.demerit {
  margin-top: 35px;
}
body .merit .merit_Box.demerit h3 {
  background: #a7a1a1;
}
body .merit .merit_Box.demerit .merit_inner {
  background: #fafafa;
}
body .merit .merit_Box.demerit .merit_inner .list li em:before {
  background: #a7a1a1;
}
body .merit .merit_Box h3 {
  background: #c3a863;
  padding: 15px;
  width: 100%;
  font-weight: 500;
  font-size: 2.3rem;
  color: #fff;
  line-height: 1.3;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-left: 20px;
  box-sizing: border-box;
}
body .merit .merit_Box h3 .icon-record {
  font-size: 2.6rem;
  position: relative;
  top: 1px;
  font-weight: 400;
  margin-right: 0.25em;
}
body .merit .merit_Box h3 .icon-cross {
  font-size: 2.8rem;
  position: relative;
  top: 1px;
  font-weight: 400;
  margin-right: 0.25em;
}
body .merit .merit_Box h3 .icon-checkbox {
  font-size: 2.2rem;
  position: relative;
  top: 1px;
  font-weight: 400;
  margin-right: 0.5em;
  color: var(--lightgreen);
}
body .merit .merit_Box .merit_inner {
  padding: 40px;
  background: #fffbf1;
  border-top: 0;
  width: auto;
  overflow: hidden;
}
body .merit .merit_Box .merit_inner .right {
  float: right;
  margin-left: 32px;
}
body .merit .merit_Box .merit_inner .right + p {
  padding-bottom: 0;
}
body .merit .merit_Box .merit_inner p {
  font-weight: 500;
  padding-bottom: 2em;
}
body .merit .merit_Box .merit_inner .list,
body .merit .merit_Box .merit_inner .num_list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
body .merit .merit_Box .merit_inner .list.gap20,
body .merit .merit_Box .merit_inner .num_list.gap20 {
  gap: 20px;
}
body .merit .merit_Box .merit_inner .list.none,
body .merit .merit_Box .merit_inner .num_list.none {
  gap: 20px;
}
body .merit .merit_Box .merit_inner .list.none li,
body .merit .merit_Box .merit_inner .num_list.none li {
  padding-left: 0;
}
body .merit .merit_Box .merit_inner .list.none li em:before,
body .merit .merit_Box .merit_inner .num_list.none li em:before {
  content: none;
}
body .merit .merit_Box .merit_inner .list li,
body .merit .merit_Box .merit_inner .num_list li {
  padding-left: 15px;
}
body .merit .merit_Box .merit_inner .list li em,
body .merit .merit_Box .merit_inner .num_list li em {
  font-family: var(--mincho);
  font-size: 1.8rem;
  display: block;
  font-weight: 500;
  position: relative;
}
body .merit .merit_Box .merit_inner .list li em:before,
body .merit .merit_Box .merit_inner .num_list li em:before {
  content: "";
  position: absolute;
  left: -15px;
  top: 16px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--line);
}
body .merit .merit_Box .merit_inner .list li em + span,
body .merit .merit_Box .merit_inner .num_list li em + span {
  display: block;
  font-size: 1.4rem;
  font-weight: 400;
  padding-top: 5px;
  line-height: 1.8;
}
body .merit .merit_Box .merit_inner .num_list li {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
}
body .merit .merit_Box .merit_inner .num_list li span {
  position: relative;
  top: 4px;
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #c3a863;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}
@media screen and (max-width: 768px) {
  body .merit .merit_Box.demerit {
    margin-top: 16px;
  }
  body .merit .merit_Box.red {
    margin-top: 16px;
  }
  body .merit .merit_Box h3 {
    height: auto;
    width: 100%;
    padding: 8px 10px;
    font-size: 1.8rem;
  }
  body .merit .merit_Box h3 .icon-record {
    font-size: 1.6rem;
    top: 2px;
    margin-right: 0.5em;
    flex-shrink: 0;
  }
  body .merit .merit_Box h3 .icon-cross {
    font-size: 2rem;
    top: 1px;
    margin-right: 0.25em;
  }
  body .merit .merit_Box h3 .icon-checkbox {
    font-size: 1.6rem;
    top: 1px;
    margin-right: 0.25em;
  }
  body .merit .merit_Box h3 img {
    width: 25px;
    margin: 0 10px 0 0;
  }
  body .merit .merit_Box .merit_inner {
    padding: 16px;
  }
  body .merit .merit_Box .merit_inner .right {
    float: none;
    text-align: center;
    padding-bottom: 10px;
  }
  body .merit .merit_Box .merit_inner .right + p {
    padding-bottom: 0;
  }
  body .merit .merit_Box .merit_inner .list,
body .merit .merit_Box .merit_inner .num_list {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  body .merit .merit_Box .merit_inner .list.gap20,
body .merit .merit_Box .merit_inner .num_list.gap20 {
    gap: 10px;
  }
  body .merit .merit_Box .merit_inner .list.none,
body .merit .merit_Box .merit_inner .num_list.none {
    gap: 10px;
  }
  body .merit .merit_Box .merit_inner .list.none li,
body .merit .merit_Box .merit_inner .num_list.none li {
    padding-left: 0;
  }
  body .merit .merit_Box .merit_inner .list.none li em:before,
body .merit .merit_Box .merit_inner .num_list.none li em:before {
    content: none;
  }
  body .merit .merit_Box .merit_inner .list li:before,
body .merit .merit_Box .merit_inner .num_list li:before {
    top: 9px;
  }
  body .merit .merit_Box .merit_inner .list li em,
body .merit .merit_Box .merit_inner .num_list li em {
    font-size: 1.5rem;
    font-weight: 500;
    padding-bottom: 5px;
  }
  body .merit .merit_Box .merit_inner .list li em + span,
body .merit .merit_Box .merit_inner .num_list li em + span {
    padding-top: 0;
    font-size: 1.3rem;
  }
  body .merit .merit_Box .merit_inner .list li:last-child,
body .merit .merit_Box .merit_inner .num_list li:last-child {
    margin-bottom: 0;
  }
  body .merit .merit_Box .merit_inner .num_list li {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
  }
  body .merit .merit_Box .merit_inner .num_list li span {
    position: relative;
    top: 3px;
    width: 26px;
    height: 26px;
  }
}
body .small_flow {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
body .small_flow .item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 50px;
  position: relative;
}
body .small_flow .item:before {
  content: "";
  position: absolute;
  left: calc(50% - 15px);
  top: calc(100% + 20px);
  width: 30px;
  height: 15px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  background: var(--black);
}
body .small_flow .item figure {
  flex-shrink: 0;
}
body .small_flow .item .text h3 {
  font-size: 2rem;
  padding-bottom: 10px;
}
body .small_flow .item .text dl {
  margin-top: 20px;
  display: flex;
  justify-content: flex-start;
}
body .small_flow .item .text dl dt {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: fit-content;
  background: var(--gold);
  color: #fff;
  font-size: 1.2rem;
  padding: 6px 10px;
  text-box: trim-both cap alphabetic;
}
body .small_flow .item .text dl dd {
  width: 100%;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.5;
  padding: 15px;
  color: var(--gold);
  background: var(--bg);
  text-box: trim-both cap alphabetic;
}
body .small_flow .item:last-child:before {
  content: none;
}
@media screen and (max-width: 768px) {
  body .small_flow {
    display: flex;
    flex-direction: column;
    gap: 60px;
    padding: 0;
  }
  body .small_flow .item {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
  }
  body .small_flow .item figure {
    flex-shrink: 0;
    width: 80px;
  }
  body .small_flow .item .text h3 {
    font-size: 1.8rem;
    text-align: center;
    padding-bottom: 10px;
  }
  body .small_flow .item .text em ~ p {
    padding: 10px;
    font-size: 1.3rem;
  }
  body .small_flow .item:last-child:before {
    content: none;
  }
}
body .note {
  position: relative;
  z-index: 1;
  background: #e66;
  color: #fff;
  margin: 40px 0;
  padding: 20px;
  font-family: var(--mincho);
  font-size: 2rem;
  text-align: center;
}
body .note.no_margin {
  margin: 0;
}
@media screen and (max-width: 768px) {
  body .note {
    margin: 20px 0;
    padding: 10px;
    font-size: 1.6rem;
  }
  body .note.no_margin {
    margin: 0;
  }
}
body .fee {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  gap: 5px;
  margin-top: 20px;
  color: var(--gold);
}
body .fee.left {
  justify-content: flex-start;
}
body .fee p {
  text-box: trim-both cap alphabetic;
  font-weight: 500;
  padding-right: 10px;
}
body .fee em {
  font-size: 1.3em;
  font-family: var(--oswald);
  text-box: trim-both cap alphabetic;
}
body .fee small {
  text-box: trim-both cap alphabetic;
}
body .strong {
  background: linear-gradient(transparent 60%, #ff6 60%);
}
body .point_box {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 80px 35px;
}
body .point_box .item {
  width: calc((100% - 70px) / 3);
}
body .point_box .item figure {
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
}
body .point_box .item .item_ttl {
  text-align: center;
  font-size: 2.3rem;
  padding: 30px 0;
}
body .point_box .item .item_ttl em {
  display: block;
  font-size: 1.2rem;
  padding-bottom: 10px;
}
body .point_box .item .item_ttl img {
  width: auto;
  height: 40px;
}
@media screen and (max-width: 768px) {
  body .point_box {
    display: flex;
    flex-direction: column;
    padding: 0 20px;
    gap: 50px;
  }
  body .point_box .item {
    width: 100%;
  }
  body .point_box .item figure {
    height: auto;
    display: block;
    position: relative;
    padding: 0 20px;
  }
  body .point_box .item figure img {
    width: 100%;
  }
  body .point_box .item .item_ttl {
    text-align: center;
    font-size: 2rem;
    padding: 20px 0;
  }
}
body .inner_time_box {
  width: 100%;
  margin: 0 auto;
  table-layout: fixed;
}
body .inner_time_box table {
  width: 100%;
  text-align: center;
}
body .inner_time_box table thead tr th {
  font-size: 1.2rem;
  padding: 10px;
  background: #f8f5ee;
  border: 1px solid var(--line);
}
body .inner_time_box table tbody {
  background: #fff;
}
body .inner_time_box table tbody tr th,
body .inner_time_box table tbody tr td {
  font-size: 1.5rem;
  font-weight: 400;
  height: 65px;
  border: 1px solid var(--line);
  vertical-align: middle;
}
body .inner_time_box table tfoot tr td {
  font-size: 1.2rem;
  text-align: right;
}
@media screen and (max-width: 768px) {
  body .inner_time_box {
    width: 100%;
  }
  body .inner_time_box table {
    width: 100%;
  }
  body .inner_time_box table thead {
    background: #fff;
  }
  body .inner_time_box table thead tr th {
    padding: 5px;
    font-size: 1.1rem;
  }
  body .inner_time_box table tbody {
    background: #fff;
  }
  body .inner_time_box table tbody tr th,
body .inner_time_box table tbody tr td {
    font-size: 1.3rem;
    height: 50px;
  }
  body .inner_time_box table tfoot tr td {
    font-size: 1.1rem;
  }
}
body .center_info {
  font-size: 0.9em;
  color: var(--gold);
  text-decoration: underline;
}

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