@charset "UTF-8";
/* ==================================================
  web-font
================================================== */
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@400;700;900&family=Noto+Sans+JP:wght@400;500;700&display=swap");
/* ==================================================
  breakpoint & medea query
================================================== */
/* ==================================================
  cache busting
================================================== */
/* ==================================================
  サイト全体のベース項目
================================================== */
html {
  font-size: 62.5%;
}
@media screen and (max-width: 1099px) {
  html {
    font-size: 50%;
  }
}

body {
  color: #414141;
  font-size: 1.6rem;
  font-family: "Lato", "Noto Sans JP", sans-serif;
  letter-spacing: 0.08em;
  line-height: 1.5;
}
@media screen and (max-width: 1099px) {
  body {
    font-size: 1.8rem;
  }
}

img:not([class*=wp-image-]) {
  width: 100%;
  height: auto;
}

.inner {
  width: 95%;
  max-width: 1100px;
  margin: 0 auto;
}
@media screen and (max-width: 1099px) {
  .inner {
    width: 90%;
  }
}

.section_bg {
  background-color: #eaf7f1;
}

/* ===============================================
  htmlでのデザイン制御
=============================================== */
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 3vw;
}
@media screen and (max-width: 1099px) {
  .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.aic {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.fw700 {
  font-weight: 700;
}

.fw800 {
  font-weight: 800;
}

.fw900 {
  font-weight: 900;
}

.is-open {
  display: block;
}

.is-close {
  display: none;
}

@media screen and (min-width: 1100px) {
  .is-sp {
    display: none;
  }
}

@media screen and (max-width: 1099px) {
  .is-pc {
    display: none;
  }
}

.is-red {
  color: #e6493e;
}

.is-green {
  color: #109458;
}

.bold {
  font-weight: 700;
}

.underline {
  text-decoration: underline;
}

.marker {
  display: inline;
  font-size: 1.8rem;
  font-weight: 700;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(70%, #56cb96));
  background: linear-gradient(transparent 70%, #56cb96 70%);
  padding-bottom: 2px;
}

.tac {
  text-align: center;
}

.tal {
  -moz-text-align-last: left;
       text-align-last: left;
}

.tar {
  text-align: right;
}

.fz12 {
  font-size: 1.2rem;
}

.fz14 {
  font-size: 1.4rem;
}

.fz18 {
  font-size: 1.8rem;
}

.fz20 {
  font-size: 2rem;
}

.fz30 {
  font-size: 3rem;
}

.miauto {
  margin-inline: auto;
}

.mt10 {
  margin-top: 10px;
}

.mt20 {
  margin-top: 20px;
}

.mt50 {
  margin-top: 50px;
}

.mb80 {
  margin-bottom: 80px;
}

.w10 {
  width: 10%;
  margin-inline: auto;
}
@media screen and (max-width: 1099px) {
  .w10 {
    width: 100%;
  }
  .w10 figure {
    width: 100%;
    max-width: 450px;
    margin-inline: auto;
  }
}

.w20 {
  width: 20%;
  margin-inline: auto;
}
@media screen and (max-width: 1099px) {
  .w20 {
    width: 100%;
  }
  .w20 figure {
    width: 100%;
    max-width: 450px;
    margin-inline: auto;
  }
}

.w30 {
  width: 30%;
  margin-inline: auto;
}
@media screen and (max-width: 1099px) {
  .w30 {
    width: 100%;
  }
  .w30 figure {
    width: 100%;
    max-width: 450px;
    margin-inline: auto;
  }
}

.w40 {
  width: 40%;
  margin-inline: auto;
}
@media screen and (max-width: 1099px) {
  .w40 {
    width: 100%;
  }
  .w40 figure {
    width: 100%;
    max-width: 450px;
    margin-inline: auto;
  }
}

.w50 {
  width: 50%;
  margin-inline: auto;
}
@media screen and (max-width: 1099px) {
  .w50 {
    width: 100%;
  }
  .w50 .img_wrapper {
    width: 100%;
    max-width: 450px;
    margin-inline: auto;
  }
}

.w60 {
  width: 60%;
  margin-inline: auto;
}
@media screen and (max-width: 1099px) {
  .w60 {
    width: 100%;
  }
  .w60 figure {
    width: 100%;
    max-width: 450px;
    margin-inline: auto;
  }
}

.w70 {
  width: 70%;
  margin-inline: auto;
}
@media screen and (max-width: 1099px) {
  .w70 {
    width: 100%;
  }
  .w70 figure {
    width: 100%;
    max-width: 450px;
    margin-inline: auto;
  }
}

.w80 {
  width: 80%;
  margin-inline: auto;
}
@media screen and (max-width: 1099px) {
  .w80 {
    width: 100%;
  }
  .w80 figure {
    width: 100%;
    max-width: 450px;
    margin-inline: auto;
  }
}

.w90 {
  width: 90%;
  margin-inline: auto;
}
@media screen and (max-width: 1099px) {
  .w90 {
    width: 100%;
  }
  .w90 figure {
    width: 100%;
    max-width: 450px;
    margin-inline: auto;
  }
}

/* ===============================================
  共通項目（使いまわし用）
=============================================== */
.btn_wrapper {
  text-align: center;
}

.btn {
  display: inline-block;
  width: 250px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border: 1px solid #109458;
  border-radius: 40px;
  background-color: #109458;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #fff;
  position: relative;
}
@media screen and (max-width: 1099px) {
  .btn {
    font-size: 1.4rem;
    padding-right: 10px;
  }
}
.btn::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 12px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 15px;
  -webkit-mask: url(../img/icon/arrow_right.svg?ver=u22jt56) no-repeat center center/contain;
          mask: url(../img/icon/arrow_right.svg?ver=u22jt56) no-repeat center center/contain;
  background-color: #fff;
}
@media screen and (max-width: 1099px) {
  .btn::after {
    width: 16px;
    height: 8px;
    right: 5px;
  }
}
.btn:hover {
  color: #109458;
  background-color: #fff;
}
.btn:hover::after {
  background-color: #109458;
}

.btn_large {
  display: inline-block;
  width: 370px;
  height: 50px;
  font-size: 3rem;
  line-height: 50px;
  text-align: center;
  border: 1px solid #109458;
  border-radius: 40px;
  background-color: #109458;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #fff;
  position: relative;
}
@media screen and (max-width: 1099px) {
  .btn_large {
    width: 250px;
    font-size: 2rem;
  }
}
.btn_large::after {
  position: absolute;
  content: "";
  width: 38px;
  height: 22px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 15px;
  -webkit-mask: url(../img/icon/arrow_right.svg?ver=u22jt56) no-repeat center center/contain;
          mask: url(../img/icon/arrow_right.svg?ver=u22jt56) no-repeat center center/contain;
  background-color: #fff;
}
@media screen and (max-width: 1099px) {
  .btn_large::after {
    width: 20px;
    height: 12px;
  }
}
.btn_large:hover {
  color: #109458;
  background-color: #fff;
}
.btn_large:hover::after {
  background-color: #109458;
}

.btn_rev {
  background-color: #fff;
  color: #0ec170;
}
.btn_rev:hover {
  background-color: #0ec170;
  color: #fff;
}

.section_space {
  padding: 100px 0;
}
@media screen and (max-width: 1099px) {
  .section_space {
    padding: 60px 0;
  }
}

.section_title_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 1099px) {
  .section_title_wrapper {
    margin-bottom: 50px;
  }
}

.section_title {
  font-size: 3rem;
  letter-spacing: 0.1em;
  color: #414141;
  position: relative;
  text-align: center;
  width: 100%;
}

.section_title_en {
  font-size: 1.4rem;
  font-weight: 700;
  color: #109458;
  text-transform: uppercase;
  position: relative;
  padding: 0 10px;
}
.section_title_en::before {
  width: 10px;
  height: 10px;
  position: absolute;
  content: "";
  border-left: solid 1px;
  top: 18%;
  left: 0;
  -webkit-transform: rotate(-30deg);
          transform: rotate(-30deg);
}
.section_title_en::after {
  width: 10px;
  height: 10px;
  position: absolute;
  content: "";
  border-right: solid 1px;
  top: 18%;
  right: 0;
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
}

.title {
  color: #109458;
  font-size: 2rem;
  font-weight: 700;
  padding: 5px 10px;
}
@media screen and (max-width: 1099px) {
  .title {
    text-align: left;
  }
}

.mouthpiece_sec3 .title {
  color: #109458;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-top: 20px;
  padding: 5px 10px;
}

.subtitle {
  display: block;
  font-size: 1.8rem;
  color: #fff;
  border-radius: 50px 0 0 50px;
  background-color: #0ec170;
  margin-bottom: 10px;
  padding: 5px 10px 5px 20px;
  position: relative;
}
@media screen and (max-width: 1099px) {
  .subtitle {
    padding: 5px 10px 5px 15px;
  }
}

.merit_title {
  background-color: #f9bb28;
}

.demerit_title {
  background-color: #9aaebb;
}

h4 {
  font-size: 1.8rem;
  font-weight: 700;
  border-bottom: 2px dotted #56cb96;
  padding-bottom: 10px;
  margin-bottom: 20px;
  padding: 5px 10px;
}

.price_type,
.case_date {
  color: #109458;
  font-weight: 700;
  padding-left: 30px;
  position: relative;
}
.price_type::before,
.case_date::before {
  display: block;
  content: "";
  width: 12px;
  height: 18px;
  position: absolute;
  top: 50%;
  left: 5px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #fff;
  z-index: 10;
}
.price_type::after,
.case_date::after {
  display: block;
  content: "";
  width: 22px;
  height: 22px;
  background-color: #109458;
  border-radius: 50px;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
}

.price_type::before {
  -webkit-mask: url(../img/icon/tooth.svg?ver=u22jt56) no-repeat center center/contain;
          mask: url(../img/icon/tooth.svg?ver=u22jt56) no-repeat center center/contain;
}

.case_date {
  font-size: 1.8rem;
  margin-bottom: 10px;
  padding-left: 35px;
}
.case_date::before {
  width: 15px;
  height: 21px;
  -webkit-mask: url(../img/icon/calendar.svg?ver=u22jt56) no-repeat center center/contain;
          mask: url(../img/icon/calendar.svg?ver=u22jt56) no-repeat center center/contain;
}
.case_date::after {
  width: 25px;
  height: 25px;
}

.emphasis {
  background-color: #fff;
  margin-top: 20px;
  padding: 15px;
}

.flow_sec1 .emphasis {
  background-color: #eaf7f1;
}

.emphasis_box {
  position: relative;
  margin-top: 40px;
  padding: 28px 15px 15px;
  border: 2px solid #56cb96;
}
.emphasis_box .emphasis_title {
  position: absolute;
  top: -1.15em;
  left: -0.5em;
  padding: 0.4em 1.4em;
  border-radius: 25px;
  background-color: #0ec170;
  color: #fff;
  font-size: 0.9em;
}
.emphasis_box .emphasis_title::before {
  position: absolute;
  bottom: -8px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 16px;
  height: 8px;
  background-color: #0ec170;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
  content: "";
}
.emphasis_box p {
  margin: 0;
}

.emphasis_flex {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  margin: 20px 0;
}
@media screen and (max-width: 768px) {
  .emphasis_flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
    margin: 10px 0;
  }
}
.emphasis_flex span {
  width: 250px;
  color: #267f77;
  font-size: 1.8rem;
  font-weight: 700;
  border: 2px solid #267f77;
  text-align: center;
  padding: 5px 20px;
}
@media screen and (max-width: 1099px) {
  .emphasis_flex span {
    max-width: 220px;
    padding: 5px 10px;
  }
}

.list_wrapper {
  list-style: none;
  margin-left: 5px;
}
.list_wrapper li {
  position: relative;
  padding-left: 15px;
}
.list_wrapper li:nth-of-type(n + 2) {
  margin-top: 10px;
}
.list_wrapper li::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 8px;
  left: 0;
  width: 5px;
  height: 5px;
  background-color: #109458;
  border-radius: 5px;
}

.list_wrapper2 {
  list-style-type: none;
  counter-reset: li;
}
.list_wrapper2 li {
  position: relative;
  padding: 10px 0 10px 40px;
}
.list_wrapper2 li:nth-child(odd) {
  background-color: #eff5f3;
}
.list_wrapper2 li::before {
  display: inline-block;
  color: #109458;
  font-weight: bold;
  text-align: center;
  padding-left: 10px;
  content: counter(li, decimal-leading-zero) ".";
  counter-increment: li;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 20;
}

.items {
  margin-top: 50px;
}
.items .item:nth-of-type(n + 2) {
  margin-top: 80px;
}
@media screen and (max-width: 1099px) {
  .items .item:nth-of-type(n + 2) {
    margin-top: 40px;
  }
}

.list-head_number {
  list-style-type: none;
  counter-reset: li;
}
.list-head_number li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 0;
}
.list-head_number li::before {
  display: inline-block;
  width: 30px;
  font-size: 2rem;
  color: #109458;
  font-weight: bold;
  line-height: 1.8em;
  text-align: center;
  content: counter(li, decimal-leading-zero);
  counter-increment: li;
  position: absolute;
  top: -20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 20;
}
@media screen and (max-width: 1099px) {
  .list-head_number li::before {
    top: -15px;
  }
}
.list-head_number li::after {
  content: "";
  width: 25px;
  height: 4px;
  background-color: #fff;
  position: absolute;
  top: -3px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 10;
}
@media screen and (max-width: 1099px) {
  .list-head_number li::after {
    width: 20px;
  }
}

.breadcrumbs {
  margin: 10px 0;
}

.bcn-none {
  display: none;
}

.bcn_display {
  margin-top: 20px;
  font-size: 1.4rem;
}

.page_top {
  height: 200px;
  width: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 1099px) {
  .page_top {
    height: 150px;
  }
}

.page_title_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 200px;
}
@media screen and (max-width: 1099px) {
  .page_title_inner {
    height: 150px;
  }
}

.page_title {
  font-size: 3rem;
  color: #333;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #fff, 0 0 40px #fff, 0 0 50px #fff, 0 0 60px #fff, 0 0 70px #fff;
}

.bg_thumbnails {
  position: absolute;
  left: 0;
  right: 0;
  top: 141.7px;
  display: block;
  /*ブロック要素に変更*/
  height: 100%;
  /*背景画像の高さを指定*/
  width: 100%;
  background-size: cover;
  /*大きさに指定*/
  background-position: center center;
  /*背景として設定する場所を指定*/
}
@media screen and (max-width: 1099px) {
  .bg_thumbnails {
    top: 60px;
  }
}

.is-home .bg_thumbnails {
  background: url(../img/title_bg.webp?ver=u22jt56) no-repeat center center/cover;
}

.gradient {
  background: -webkit-gradient(linear, left top, right top, from(#ecb1c1), to(#fcf9f5));
  background: linear-gradient(90deg, #ecb1c1 0%, #fcf9f5 100%);
  background: -webkit-linear-gradient(0deg, #ecb1c1 0%, #fcf9f5 100%);
}

figcaption {
  text-align: center;
}

main {
  margin-top: 100px;
}
@media screen and (max-width: 1099px) {
  main {
    margin-top: 60px;
  }
}

.consultation_table_wrapper {
  width: 100%;
}

.consultation_table {
  background-color: #fff;
  width: 100%;
  border-collapse: collapse;
}
.consultation_table th,
.consultation_table td {
  text-align: center;
  vertical-align: bottom;
  padding: 10px 5px;
}
.consultation_table th {
  font-weight: 700;
}
.consultation_table .orthodontics-only {
  background-color: #eaf7f1;
}
.consultation_table tr {
  border: 1px solid #f8f8f8;
}
.consultation_table tr:first-child th {
  color: #fff;
  background-color: #109458;
}
.consultation_table tr th:not(:last-child) {
  border-right: 1px solid #f8f8f8;
}
.consultation_table tr:nth-child(2), .consultation_table tr:nth-child(3) {
  border-bottom: 1px solid #f8f8f8;
}

.consultation-table_text .orthodontics-only {
  padding-left: 2rem;
  position: relative;
}
.consultation-table_text .orthodontics-only::before {
  display: inline-block;
  content: "※";
  font-weight: 700;
  color: #109458;
  background-color: #eaf7f1;
  width: 20px;
  height: 20px;
  padding-left: 2px;
  padding-bottom: 24px;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 1099px) {
  .consultation-table_text .orthodontics-only::before {
    width: 17px;
    left: -2px;
  }
}

.table,
.comparison_table {
  width: 100%;
  border-collapse: collapse;
}
.table th,
.table td,
.comparison_table th,
.comparison_table td {
  border: 1px solid #eaf7f1;
  border-collapse: collapse;
  text-align: center;
  vertical-align: middle;
  background-color: #fff;
  padding: 20px 10px;
}
@media screen and (max-width: 1099px) {
  .table th,
  .table td,
  .comparison_table th,
  .comparison_table td {
    padding: 10px 5px;
  }
}
.table th,
.comparison_table th {
  font-weight: 700;
  color: #fff;
  background-color: #109458;
}
.table td,
.comparison_table td {
  padding: 10px 5px;
}
.table tr:not(:first-child) th,
.comparison_table tr:not(:first-child) th {
  padding: 0 6px;
  position: relative;
}
.table tr:not(:first-child) th::after,
.comparison_table tr:not(:first-child) th::after {
  content: "";
  display: block;
  height: 12px;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0px;
  z-index: -1;
}
.table tr:not(:first-child) th span,
.comparison_table tr:not(:first-child) th span {
  display: block;
}
.table tr td:nth-child(2) img,
.comparison_table tr td:nth-child(2) img {
  width: 150px;
}

.table th,
.table td {
  text-align: center;
  vertical-align: middle;
  padding: 20px 10px;
}
@media screen and (max-width: 1099px) {
  .table th,
  .table td {
    padding: 10px 5px;
  }
}
.table th {
  width: 30%;
  font-weight: 500;
}

.mouthpiece_sec4 .comparison_table tr:not(:first-child) th {
  color: #109458;
  background-color: #fff;
}

@media screen and (max-width: 1099px) {
  .js-scrollHint {
    overflow-x: scroll;
  }
  .js-scrollHint table {
    white-space: nowrap;
  }
}

/* ==================================================
  header
================================================== */
.header {
  width: 100%;
  background: rgba(255, 255, 255, 0.85);
  top: 0;
  z-index: 999;
  -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
          box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  height: 118px;
  border-bottom: 5px solid #109458;
}
@media screen and (max-width: 1099px) {
  .header {
    height: 60px;
  }
}

.header_top_wrapper {
  width: 95%;
  height: 118px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
}
@media screen and (max-width: 1099px) {
  .header_top_wrapper {
    height: 55px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.header_left_wrapper {
  width: 20%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 10px;
}
@media screen and (max-width: 1099px) {
  .header_left_wrapper {
    height: auto;
    display: block;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 0;
  }
}

.header_copy {
  font-size: 1.3rem;
}

@media screen and (max-width: 1099px) {
  .header_logo {
    width: 30%;
    min-width: 150px;
    max-width: 250px;
  }
}
.header_logo a img {
  max-width: 240px;
  margin-top: 5px;
}
@media screen and (max-width: 1099px) {
  .header_logo a img {
    margin-top: 0;
  }
}

.header_right_wrapper {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 10px;
}
@media screen and (max-width: 1099px) {
  .header_right_wrapper {
    display: none;
  }
}

.header_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
}
@media screen and (max-width: 1099px) {
  .header_nav {
    display: none;
  }
}

.gnavi__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.gnavi__list {
  height: 45px;
  line-height: 45px;
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-weight: 400;
  cursor: pointer;
}
.gnavi__list a {
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  position: relative;
}
.gnavi__list > a::after {
  content: "";
  width: 1px;
  height: 60%;
  position: absolute;
  background-color: #109458;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.gnavi__list:nth-of-type(5), .gnavi__list:nth-of-type(6) {
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  padding: 0 10px;
}
.gnavi__list:nth-of-type(5)::after, .gnavi__list:nth-of-type(6)::after {
  content: "";
  width: 1px;
  height: 60%;
  position: absolute;
  background-color: #109458;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.gnavi__list.dropdown__parent {
  position: relative;
}
.gnavi__list.dropdown__parent::before {
  position: absolute;
  content: "";
  width: 20px;
  height: 12px;
  top: 35px;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(90deg);
          transform: translateX(-50%) rotate(90deg);
  -webkit-mask: url(../img/icon/arrow_right.svg?ver=u22jt56) no-repeat center center/contain;
          mask: url(../img/icon/arrow_right.svg?ver=u22jt56) no-repeat center center/contain;
  background-color: #109458;
}

.gnavi__list a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  padding: 0 10px;
  letter-spacing: 0.05em;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.header_nav_btn {
  margin-left: auto;
}

.header_reserve_btn a {
  display: block;
  background-color: #109458;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 20px !important;
  color: #fff !important;
}
.header_reserve_btn a:hover {
  background: #56cb96;
}

.header_tel_btn .tel {
  display: block;
  color: #109458;
  padding-right: 0;
  padding-left: 40px;
  position: relative;
  font-size: 2.4rem;
  font-weight: 700;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header_tel_btn .tel::before {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 15px;
  -webkit-mask: url(../img/icon/phone.svg?ver=u22jt56) no-repeat center center/contain;
          mask: url(../img/icon/phone.svg?ver=u22jt56) no-repeat center center/contain;
  background-color: #109458;
}

.header_top_right_sp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 1100px) {
  .header_top_right_sp {
    display: none;
  }
}

.header_reserve_btn_wrapper {
  width: 60px;
  height: 60px;
  background: #109458;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 1100px) {
  .header_reserve_btn_wrapper {
    display: none;
  }
}

.header_reserve_btn_sp {
  font-size: 1.2rem;
  line-height: 1;
  position: relative;
  padding-top: 25px;
  color: #fff;
}
.header_reserve_btn_sp::before {
  position: absolute;
  content: "";
  width: 25px;
  height: 25px;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-mask: url(../img/icon/reserve.svg?ver=u22jt56) no-repeat center center/contain;
          mask: url(../img/icon/reserve.svg?ver=u22jt56) no-repeat center center/contain;
  background-color: #fff;
}

.header_tel_btn_wrapper {
  width: 60px;
  height: 55px;
  background: #0ec170;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 1100px) {
  .header_tel_btn_wrapper {
    display: none;
  }
}

.header_tel_btn_sp {
  font-size: 1.4rem;
  position: relative;
  padding-top: 25px;
  color: #fff;
}
.header_tel_btn_sp::before {
  position: absolute;
  content: "";
  width: 25px;
  height: 25px;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-mask: url(../img/icon/sp_tel.svg?ver=u22jt56) no-repeat center center/contain;
          mask: url(../img/icon/sp_tel.svg?ver=u22jt56) no-repeat center center/contain;
  background-color: #fff;
}

/* ===============================================
  ドロップダウンメニュー
=============================================== */
.dropdown__lists {
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
  /*デフォルトでは非表示の状態にしておく*/
  -webkit-transform-origin: center top;
          transform-origin: center top;
  /*変形を適応する基準をtopとする*/
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  /*表示の変化を0.3秒に指定*/
  width: 180px;
  position: absolute;
  top: 59px;
  left: 50%;
  /* 左から50%の位置に配置 */
  -webkit-transform: translateX(-50%) scaleY(0);
          transform: translateX(-50%) scaleY(0);
  /* X方向に-50%ずらして非表示にする */
}
.dropdown__lists .text-min a {
  font-size: 1.3rem;
}

.gnavi__list:hover .dropdown__lists {
  -webkit-transform: translateX(-50%) scaleY(1);
          transform: translateX(-50%) scaleY(1);
  /* X方向に-50%ずらして表示 */
  /*Gナビメニューにホバーしたら表示*/
}

.dropdown__list {
  background-color: #14ad68;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-size: 1.3rem;
  position: relative;
  height: 60px;
}

.dropdown__list:not(:first-child)::before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 0;
}

.dropdown__list:hover {
  background-color: #56cb96;
  background-color: #56cb96;
}

.dropdown__list a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding: 20px 5px;
  color: #fff;
  text-decoration: none;
}

/* ==================================================
  hamburger
================================================== */
.hamburger_button_wrapper {
  padding: 0 10px;
}

.hamburger_icon {
  width: 40px;
  height: 35px;
  margin-left: auto;
  position: relative;
  display: none;
}
@media screen and (max-width: 1099px) {
  .hamburger_icon {
    display: block;
    z-index: 300;
  }
}
.hamburger_icon::after {
  position: absolute;
  content: "メニュー";
  color: #414141;
  width: 100%;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 1rem;
  text-align: center;
}
.hamburger_icon span {
  width: 28px;
  position: absolute;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
  height: 1px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #414141;
  border-radius: 1px;
}
.hamburger_icon span:nth-child(1) {
  top: 0;
}
.hamburger_icon span:nth-child(2) {
  top: 8px;
}
.hamburger_icon span:nth-child(3) {
  top: 16px;
}
.hamburger_icon.is-active::after {
  content: "閉じる";
  color: #414141;
}
.hamburger_icon.is-active span {
  background-color: #414141;
  left: 50%;
}
.hamburger_icon.is-active span:nth-child(1) {
  -webkit-transform: translateX(-50%) rotate(-45deg);
          transform: translateX(-50%) rotate(-45deg);
  top: 8px;
}
.hamburger_icon.is-active span:nth-child(2) {
  display: none;
}
.hamburger_icon.is-active span:nth-child(3) {
  -webkit-transform: translateX(-50%) rotate(45deg);
          transform: translateX(-50%) rotate(45deg);
  top: 8px;
}

.is-fixed body {
  overflow: hidden;
}

.hamburger_menu {
  background-color: rgba(0, 73, 40, 0.5803921569);
  height: 100vh;
  width: 100vw;
  position: fixed;
  left: 0;
  right: 0;
  top: 60px;
  z-index: 200;
  display: none;
}

.hamburger_head {
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.hamburger_logo {
  width: 200px;
  display: block;
}

.hamburger_menu_scroll {
  height: 100vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 20px 0 200px;
}

.hamburger_menu_content {
  display: block;
  margin: 0 auto;
  width: 90%;
  border-radius: 10px;
  overflow: hidden;
}
.hamburger_menu_content li:not(:first-child) .hamburger_menu_item {
  border-top: 2px dotted #56cb96;
}

.hamburger_menu_item_medical {
  border-bottom: 2px dotted #56cb96;
}

.hamburger_menu_item {
  position: relative;
  color: #414141;
  background-color: rgba(255, 255, 255, 0.9);
  font-size: 2rem;
  font-weight: 500;
  padding: 10px 0;
  text-align: center;
}
.hamburger_menu_item a {
  padding: 10px 50px;
}

.hamburger_menu_item_icon {
  position: absolute;
  width: auto;
  height: auto;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.hamburger_menu_item_arrow {
  padding-right: 20px;
  position: relative;
  font-weight: 700;
}
.hamburger_menu_item_arrow::after {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  -webkit-mask: url(../img/icon/arrow_right.svg?ver=u22jt56) no-repeat center center/contain;
          mask: url(../img/icon/arrow_right.svg?ver=u22jt56) no-repeat center center/contain;
  background-color: #109458;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
}

.hamburger_menu_item_body {
  text-align: center;
  background-color: rgba(255, 255, 255, 0.9);
}
.hamburger_menu_item_body ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.hamburger_menu_item_body li {
  padding: 10px 0;
  font-size: 1.8rem;
  color: #414141;
  width: 50%;
}
.hamburger_menu_item_body li:not(:first-child) {
  border-top: 1px solid #fff;
}
.hamburger_menu_item_body li:nth-child(odd) {
  border-right: 2px dotted #56cb96;
}
.hamburger_menu_item_body li:not(:last-child) {
  border-bottom: 2px dotted #56cb96;
}
.hamburger_menu_item_body li.border-none {
  border-bottom: none;
}

.hamburger_menu_item_body.case li:not(:last-child) {
  border-bottom: none;
}

.hamburger_menu_body_item {
  color: #fff;
}
.hamburger_menu_body_item a {
  width: 100%;
  display: inline-block;
}

/* ==================================================
  top
================================================== */
.top .swiper {
  width: 100%;
}
.top .swiper-slide {
  width: 100%;
  position: relative;
  height: 80vh;
}
@media screen and (max-width: 1099px) {
  .top .swiper-slide {
    height: 50vh;
    min-height: 450px;
  }
}
@media screen and (max-width: 768px) {
  .top .swiper-slide {
    min-height: 300px;
  }
}
.top .swiper-slide img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}
.top .swiper-slide .catchcopy {
  position: absolute;
  content: "";
  height: auto;
  top: 50%;
  left: 50%;
  z-index: 2;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  line-height: 1.8;
  font-weight: 700;
  font-size: clamp(2rem, 3vw, 3rem);
  text-shadow: 0 0 1px #fff, 0 0 2px #fff, 0 0 3px #fff, 0 0 4px #fff, 0 0 5px #fff, 0 0 6px #fff, 0 0 7px #fff, 0 0 8px #fff, 0 0 9px #fff, 0 0 10px #fff;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  position: relative;
}
.top .swiper-slide .catchcopy::after {
  content: "";
  width: 550px;
  background: url(../img/top/mv_circle.webp) no-repeat center center/cover;
  position: absolute;
  top: 0;
}
@media screen and (max-width: 1099px) {
  .top .swiper-slide .catchcopy {
    width: auto;
    top: 10%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

/* ===============================================
  top_adult-child
=============================================== */
.adult-child_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1099px) {
  .adult-child_wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.top_adult_wrapper,
.top_child_wrapper {
  width: 50%;
  height: 400px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 2.5%;
}
@media screen and (max-width: 1099px) {
  .top_adult_wrapper,
  .top_child_wrapper {
    width: 100%;
    height: 100%;
    padding: 30px;
  }
}

.top_adult_wrapper {
  background: url(../img/top/adult-orthodontics.webp) no-repeat center center/cover;
  background-color: rgba(255, 255, 255, 0.7);
  background-blend-mode: lighten;
}
@media screen and (max-width: 1099px) {
  .top_adult_wrapper {
    background-position: center 20%;
  }
}

.top_child_wrapper {
  background: url(../img/top/child-orthodontics.webp) no-repeat center center/cover;
  background-color: rgba(255, 255, 255, 0.7);
  background-blend-mode: lighten;
}
@media screen and (max-width: 1099px) {
  .top_child_wrapper {
    background-position: center 20%;
  }
}

.top_adult,
.top_child {
  width: 100%;
  color: #414141;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.top_adult h2,
.top_child h2 {
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  padding-top: 50px;
}
@media screen and (max-width: 1099px) {
  .top_adult h2,
  .top_child h2 {
    font-size: 2.5rem;
    padding-top: 0;
  }
}
.top_adult span,
.top_child span {
  display: inline-block;
  margin: 30px auto 0;
}
.top_adult .btn_wrapper,
.top_child .btn_wrapper {
  padding-bottom: 50px;
}
@media screen and (max-width: 1099px) {
  .top_adult .btn_wrapper,
  .top_child .btn_wrapper {
    padding-top: 30px;
    padding-bottom: 0;
  }
}

/* ===============================================
  infinite-slider
=============================================== */
.infinite-slider {
  padding: 60px 0;
}
@media screen and (max-width: 1099px) {
  .infinite-slider {
    padding: 60px 0 0;
  }
}

/* スライダーのwrapper */
.infinite-slider .swiper-wrapper {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}

/* スライド */
.infinite-slider .swiper-slide {
  height: 250px !important;
  /* 高さを指定 */
  width: auto !important;
}
@media screen and (max-width: 1099px) {
  .infinite-slider .swiper-slide {
    height: 250px !important;
  }
}
@media screen and (max-width: 768px) {
  .infinite-slider .swiper-slide {
    height: 200px !important;
  }
}

/* スライド内の画像 */
.infinite-slider .swiper-slide img {
  width: auto;
  height: 100%;
}

/* ===============================================
  top_about
=============================================== */
.top_about_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  overflow: hidden;
  margin: 50px 0;
}
@media screen and (max-width: 1099px) {
  .top_about_item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0;
  }
}
.top_about_item img {
  width: 180%;
  border-radius: 10px 0 0 10px;
}
@media screen and (max-width: 1099px) {
  .top_about_item img {
    width: 100%;
  }
}

.top_about_item_ttl {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #109458;
}

.top_about_item_left {
  width: 50%;
  padding: 0 2.5% 0 5%;
}
@media screen and (max-width: 1099px) {
  .top_about_item_left {
    width: 100%;
    padding-inline: 5%;
  }
}
.top_about_item_left .btn_wrapper {
  padding-top: 30px;
}

.top_about_item_right {
  width: 50%;
  border-radius: 10px;
}
@media screen and (max-width: 1099px) {
  .top_about_item_right {
    width: 95%;
    margin: 30px 0 0 auto;
  }
}

/* ===============================================
  top_malocclusion
=============================================== */
.top_malocclusion {
  background-color: #eaf7f1;
}
.top_malocclusion .btn_wrapper {
  width: 100%;
  margin-bottom: 30px;
  padding-top: 80px;
}
@media screen and (max-width: 1099px) {
  .top_malocclusion .btn_wrapper {
    margin-bottom: 0;
    padding-top: 50px;
  }
}
.top_malocclusion .btn_wrapper .btn {
  width: 20%;
  font-size: 2rem;
}

.top_malocclusion_items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px;
  padding: 50px 0 0;
}
@media screen and (max-width: 1099px) {
  .top_malocclusion_items {
    gap: 20px;
    padding: 0;
  }
}

.top_malocclusion_item {
  width: calc((100% - 90px) / 4);
  height: auto;
  border: 1px solid #109458;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
}
@media screen and (max-width: 1099px) {
  .top_malocclusion_item {
    width: calc((100% - 30px) / 2);
    max-width: 200px;
  }
}
.top_malocclusion_item .img_wrapper {
  margin: auto 0;
  padding: 30px;
}
@media screen and (max-width: 1099px) {
  .top_malocclusion_item .img_wrapper {
    padding: 10%;
  }
}
.top_malocclusion_item .img_wrapper img {
  height: 100%;
}
.top_malocclusion_item:nth-child(odd) .top_malocclusion_title {
  background-color: #109458;
}
.top_malocclusion_item:nth-child(even) .top_malocclusion_title {
  background-color: #56cb96;
}
.top_malocclusion_item .top_malocclusion_title {
  width: 100%;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  padding: 15px 0;
  position: relative;
}
@media screen and (max-width: 1099px) {
  .top_malocclusion_item .top_malocclusion_title {
    padding: 10px 0;
    font-size: clamp(1.6rem, 2vw, 1.8rem);
  }
}
.top_malocclusion_item .top_malocclusion_title.text-min {
  font-size: 1.8rem;
}
@media screen and (max-width: 1099px) {
  .top_malocclusion_item .top_malocclusion_title.text-min {
    font-size: clamp(1.4rem, 2vw, 1.8rem);
  }
}
.top_malocclusion_item .top_malocclusion_title .text-min {
  font-size: 1.6rem;
}
@media screen and (max-width: 1099px) {
  .top_malocclusion_item .top_malocclusion_title .text-min {
    font-size: clamp(1.3rem, 2vw, 1.65rem);
  }
}
.top_malocclusion_item .top_malocclusion_text {
  padding: 15px;
}

/* ===============================================
  top_medical
=============================================== */
.top_medical .box_lists li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.top_medical .box_lists li .btn_wrapper {
  width: 100%;
  margin-bottom: 30px;
}
.top_medical .box_lists li .btn_wrapper .btn {
  width: 85%;
}

.top_medical_banner1 {
  background-color: #fff;
  border: 10px solid #109458;
  margin-top: 100px;
  padding: 15px;
}
@media screen and (max-width: 1099px) {
  .top_medical_banner1 {
    border: 5px solid #109458;
    margin-top: 50px;
    padding: 10px;
  }
}
.top_medical_banner1 .top_medical_title {
  color: #414141;
  font-size: 3rem;
  text-align: center;
  padding-bottom: 10px;
}
.top_medical_banner1 .banner_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1099px) {
  .top_medical_banner1 .banner_wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.top_medical_banner1 .banner_img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.top_medical_banner1 .banner_img img {
  width: 150px;
  height: 100px;
}
@media screen and (max-width: 1099px) {
  .top_medical_banner1 .banner_img img {
    width: 25%;
    height: auto;
  }
}
.top_medical_banner1 .banner_text_wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1099px) {
  .top_medical_banner1 .banner_text_wrapper {
    margin: 0 auto;
  }
}
.top_medical_banner1 .banner_text {
  font-size: 1.8rem;
  border-bottom: 1px solid #109458;
}
@media screen and (max-width: 1099px) {
  .top_medical_banner1 .banner_text {
    padding-top: 10px;
  }
}
.top_medical_banner1 .btn_wrapper {
  padding-top: 20px;
}

.top_medical_banner2 {
  display: block;
  background-color: #eaf7f1;
  border: 1px solid #109458;
  margin: 30px auto 0;
  padding: 15px;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 1099px) {
  .top_medical_banner2 {
    width: 100%;
    margin-top: 50px;
    padding: 10px;
  }
}
.top_medical_banner2:hover {
  opacity: 0.8;
}
.top_medical_banner2::before {
  content: "";
  width: 100%;
  height: 100%;
  background-image: linear-gradient(135deg, #c0edd9 30px, transparent 31px calc(100% - 31px), #c0edd9 calc(100% - 30px));
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 1099px) {
  .top_medical_banner2::before {
    background-image: linear-gradient(135deg, #c0edd9 20px, transparent 21px calc(100% - 21px), #c0edd9 calc(100% - 20px));
  }
}
.top_medical_banner2 .top_medical_title {
  width: 29%;
  display: block;
  color: #414141;
  font-size: 3rem;
  text-align: center;
  border-bottom: 5px dotted #109458;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 1099px) {
  .top_medical_banner2 .top_medical_title {
    width: 230px;
    margin-bottom: 10px;
  }
}
.top_medical_banner2 .top_medical_title::before {
  content: "";
  width: 80px;
  height: 80px;
  -webkit-mask: url(../img/top/second-opinion1.svg?ver=u22jt56) no-repeat center center/contain;
          mask: url(../img/top/second-opinion1.svg?ver=u22jt56) no-repeat center center/contain;
  background-color: #87c9ab;
  position: absolute;
  top: -5px;
  left: -40%;
}
@media screen and (max-width: 1099px) {
  .top_medical_banner2 .top_medical_title::before {
    width: 55px;
    height: 55px;
    top: 5px;
  }
}
@media screen and (max-width: 600px) {
  .top_medical_banner2 .top_medical_title::before {
    width: 40px;
    height: 40px;
    top: 15px;
    left: -21%;
  }
}
.top_medical_banner2 .top_medical_title::after {
  content: "";
  width: 75px;
  height: 75px;
  -webkit-mask: url(../img/top/second-opinion2.svg?ver=u22jt56) no-repeat center center/contain;
          mask: url(../img/top/second-opinion2.svg?ver=u22jt56) no-repeat center center/contain;
  background-color: #87c9ab;
  position: absolute;
  top: 0px;
  right: -40%;
}
@media screen and (max-width: 1099px) {
  .top_medical_banner2 .top_medical_title::after {
    width: 50px;
    height: 50px;
    top: 10px;
  }
}
@media screen and (max-width: 600px) {
  .top_medical_banner2 .top_medical_title::after {
    width: 35px;
    height: 35px;
    top: 20px;
    right: -21%;
  }
}
.top_medical_banner2 p {
  font-size: 1.4rem;
  text-align: right;
  padding-right: 20px;
}
@media screen and (max-width: 1099px) {
  .top_medical_banner2 p {
    text-align: center;
  }
}

/* ===============================================
  topFeature
=============================================== */
.top_feature {
  background: url(../img/top/feature_bg.webp) no-repeat center center/cover;
  background-color: rgba(255, 255, 255, 0.5);
  background-blend-mode: lighten;
}

.top_feature_items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px 60px;
  padding: 50px 0;
}
@media screen and (max-width: 1000px) {
  .top_feature_items {
    gap: 20px;
    padding: 0;
  }
}
.top_feature_items .top_feature_item {
  width: calc((100% - 240px) / 3);
  min-width: 285px;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: #109458;
  position: relative;
}
@media screen and (max-width: 1099px) {
  .top_feature_items .top_feature_item {
    width: calc((100% - 260px) / 3);
    min-width: 195px;
  }
}
.top_feature_items .top_feature_item:nth-of-type(1) .top_feature_title::before {
  -webkit-mask: url(../img/top/top_feature1.svg?ver=u22jt56) no-repeat center center/contain;
          mask: url(../img/top/top_feature1.svg?ver=u22jt56) no-repeat center center/contain;
  background-color: #fff;
}
.top_feature_items .top_feature_item:nth-of-type(2) .top_feature_title::before {
  -webkit-mask: url(../img/top/top_feature2.svg?ver=u22jt56) no-repeat center center/contain;
          mask: url(../img/top/top_feature2.svg?ver=u22jt56) no-repeat center center/contain;
  background-color: #fff;
}
.top_feature_items .top_feature_item:nth-of-type(3) .top_feature_title::before {
  -webkit-mask: url(../img/top/top_feature3.svg?ver=u22jt56) no-repeat center center/contain;
          mask: url(../img/top/top_feature3.svg?ver=u22jt56) no-repeat center center/contain;
  background-color: #fff;
}
.top_feature_items .top_feature_item:nth-of-type(4) .top_feature_title::before {
  -webkit-mask: url(../img/top/top_feature4.svg?ver=u22jt56) no-repeat center center/contain;
          mask: url(../img/top/top_feature4.svg?ver=u22jt56) no-repeat center center/contain;
  background-color: #fff;
}
.top_feature_items .top_feature_item:nth-of-type(5) .top_feature_title::before {
  -webkit-mask: url(../img/top/top_feature5.svg?ver=u22jt56) no-repeat center center/contain;
          mask: url(../img/top/top_feature5.svg?ver=u22jt56) no-repeat center center/contain;
  background-color: #fff;
}
.top_feature_items .top_feature_item:nth-of-type(6) .top_feature_title::before {
  -webkit-mask: url(../img/top/top_feature6.svg?ver=u22jt56) no-repeat center center/contain;
          mask: url(../img/top/top_feature6.svg?ver=u22jt56) no-repeat center center/contain;
  background-color: #fff;
}
.top_feature_items .top_feature_item::after {
  content: "";
  width: 105%;
  height: 105%;
  border: 1px solid #109458;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.top_feature_number {
  color: #fff;
  font-size: 4rem;
  font-weight: 700;
  text-align: center;
  line-height: 40px;
  padding-top: 11%;
  position: relative;
}
@media screen and (max-width: 1099px) {
  .top_feature_number {
    font-size: 3.5rem;
    padding-top: 8%;
  }
}
.top_feature_number::before {
  content: "POINT";
  display: block;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 20px;
  position: absolute;
  top: 15px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 1099px) {
  .top_feature_number::before {
    top: 7px;
  }
}
@media screen and (max-width: 1000px) {
  .top_feature_number::before {
    font-size: 1rem;
    top: 5px;
  }
}

.top_feature_title {
  font-size: 1.6rem;
  color: #fff;
  text-align: center;
  padding-top: 30%;
  position: relative;
}
@media screen and (max-width: 1099px) {
  .top_feature_title {
    font-size: 1.5rem;
  }
}
.top_feature_title::before {
  position: absolute;
  content: "";
  width: 50px;
  height: 50px;
  top: 15%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #109458;
}
@media screen and (max-width: 1099px) {
  .top_feature_title::before {
    width: 45px;
    height: 45px;
    top: 7%;
  }
}
@media screen and (max-width: 1000px) {
  .top_feature_title::before {
    top: 3px;
  }
}

/* ===============================================
  top_info
=============================================== */
.top_info {
  background-color: #eaf7f1;
}

.top_info_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 3vw;
}
@media screen and (max-width: 1099px) {
  .top_info_wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
}
.top_info_wrapper .news_wrapper,
.top_info_wrapper .calendar_wrapper {
  width: 50%;
}
@media screen and (max-width: 1099px) {
  .top_info_wrapper .news_wrapper,
  .top_info_wrapper .calendar_wrapper {
    width: 100%;
  }
}
.top_info_wrapper .xo-event-calendar {
  font-family: "Lato", "Noto Sans JP", sans-serif;
}
.top_info_wrapper .xo-event-calendar caption {
  width: 50%;
  margin: 0 auto;
}
@media screen and (max-width: 1099px) {
  .top_info_wrapper .calendar_wrapper {
    margin-top: 60px;
  }
}
.top_info_wrapper .calendar_wrapper .calendar-caption {
  font-size: 1.8rem;
}
.top_info_wrapper .calendar_wrapper .month-prev {
  position: relative;
}
.top_info_wrapper .calendar_wrapper .month-prev span.nav-prev {
  display: none;
}
.top_info_wrapper .calendar_wrapper .month-prev::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 18px;
  top: 50%;
  left: 10px;
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
  -webkit-mask: url(../img/icon/arrow_right.svg?ver=u22jt56) no-repeat center center/contain;
          mask: url(../img/icon/arrow_right.svg?ver=u22jt56) no-repeat center center/contain;
  background-color: #109458;
}
.top_info_wrapper .calendar_wrapper .month-next {
  text-align: right;
  position: relative;
}
.top_info_wrapper .calendar_wrapper .month-next span.nav-next {
  display: none;
}
.top_info_wrapper .calendar_wrapper .month-next::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 18px;
  right: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-mask: url(../img/icon/arrow_right.svg?ver=u22jt56) no-repeat center center/contain;
          mask: url(../img/icon/arrow_right.svg?ver=u22jt56) no-repeat center center/contain;
  background-color: #109458;
}

.top_news_body {
  margin: 50px 0;
}
@media screen and (max-width: 1099px) {
  .top_news_body {
    margin: 30px 0;
  }
}
.top_news_body .item:nth-of-type(n + 2) {
  margin-top: 20px;
}

.news_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 1099px) {
  .news_content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.date_category_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.news_date {
  color: #999999;
  font-size: 1.4rem;
  margin-top: 2px;
}

.category_name {
  font-size: 1.2rem;
  display: inline-block;
  color: #fff;
  background-color: #56cb96;
  margin: 0 10px;
  width: 65px;
  height: 25px;
  text-align: center;
  line-height: 25px;
}

.news_title {
  margin-left: 10px;
}
@media screen and (max-width: 1099px) {
  .news_title {
    margin-left: 0;
  }
}

.close_notice {
  text-align: center;
  margin-top: 5px;
  margin-bottom: 20px;
}

/* ==================================================
  footer
================================================== */
footer {
  padding-top: 100px;
  background-color: #f8f8f8;
  border: 1px solid #8b9297;
}
@media screen and (max-width: 1099px) {
  footer {
    padding-top: 60px;
  }
}

.footer_info_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1099px) {
  .footer_info_wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media screen and (max-width: 1099px) {
  .footer_info_left {
    margin-left: 0;
  }
}
.footer_info_left .footer_logo {
  width: 300px;
  max-width: 100%;
  padding-bottom: 30px;
}
.footer_info_left .address_text {
  color: #414141;
  font-weight: 700;
  padding-bottom: 40px;
}
.footer_info_left .access_text {
  color: #109458;
  font-weight: 700;
}
.footer_info_left .contact_text {
  padding-top: 20px;
}
.footer_info_left .tel {
  display: block;
  color: #109458;
  padding-left: 25px;
  position: relative;
  font-size: 2.5rem;
  font-weight: 700;
}
@media screen and (max-width: 1099px) {
  .footer_info_left .tel {
    padding-left: 25px;
  }
}
.footer_info_left .tel::before {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  -webkit-mask: url(../img/icon/phone.svg?ver=u22jt56) no-repeat center center/contain;
          mask: url(../img/icon/phone.svg?ver=u22jt56) no-repeat center center/contain;
  background-color: #109458;
}
@media screen and (max-width: 1099px) {
  .footer_info_left .tel::before {
    left: 0;
  }
}

.footer_info_right {
  width: 50%;
}
@media screen and (max-width: 1099px) {
  .footer_info_right {
    width: 100%;
    margin-top: 30px;
  }
}

.footer_banner_wrapper {
  padding-top: 60px;
}
.footer_banner_wrapper p {
  padding-bottom: 20px;
}
.footer_banner_wrapper .footer_banner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1099px) {
  .footer_banner_wrapper .footer_banner {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 20px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.footer_banner_wrapper .footer_banner li a {
  display: inline-block;
  width: 330px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 1099px) {
  .footer_banner_wrapper .footer_banner li a {
    width: 300px;
  }
}
@media screen and (max-width: 768px) {
  .footer_banner_wrapper .footer_banner li a {
    width: 100%;
    max-width: 500px;
  }
}
.footer_banner_wrapper .footer_banner li a:hover {
  opacity: 0.8;
}
.footer_banner_wrapper .footer_banner li a:first-child, .footer_banner_wrapper .footer_banner li a:nth-child(2) {
  max-height: 70px;
}

.footer_btn_wrapper {
  margin: 10px 0;
  text-align: unset;
}
.footer_btn_wrapper .btn {
  width: 200px;
  height: 40px;
  line-height: 40px;
}

.to_top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  -webkit-mask: url(../img/icon/to-top.svg) no-repeat center center/contain;
          mask: url(../img/icon/to-top.svg) no-repeat center center/contain;
  background-color: #109458;
  cursor: pointer;
}
@media screen and (max-width: 1099px) {
  .to_top {
    width: 40px;
    height: 40px;
  }
}

.footer_map {
  width: 100%;
}
.footer_map iframe {
  width: 100%;
  height: 400px;
}
@media screen and (max-width: 1099px) {
  .footer_map iframe {
    height: 300px;
  }
}

.footer_right {
  background-color: #109458;
  padding: 60px 0;
}

.footer_nav_items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 40px 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.footer_nav_item {
  color: #fff;
}

.footer_nav_child_items {
  margin-top: 10px;
}

.footer_nav_child_item {
  font-size: 1.4rem;
}
.footer_nav_child_item a {
  padding-left: 1em;
  position: relative;
}
.footer_nav_child_item a::before {
  position: absolute;
  content: "";
  width: 20px;
  height: 12px;
  top: 50%;
  left: -4px;
  -webkit-transform: translateY(-50%) rotate(0deg);
          transform: translateY(-50%) rotate(0deg);
  -webkit-mask: url(../img/icon/arrow_right.svg?ver=u22jt56) no-repeat center center/contain;
          mask: url(../img/icon/arrow_right.svg?ver=u22jt56) no-repeat center center/contain;
  background-color: #fff;
}

.footer {
  background-color: #109458;
}

.footer_wrapper {
  padding-bottom: 30px;
}
@media screen and (max-width: 1099px) {
  .footer_wrapper {
    padding: 30px 0;
  }
}
.footer_wrapper .copyright {
  font-size: 1.2rem;
  color: #fff;
  text-align: center;
}

/* ===============================================
  page-doctor
=============================================== */
.career_table {
  margin-top: 30px;
  width: 100%;
}
.career_table tr {
  border-collapse: collapse;
}
.career_table tr:nth-child(odd) {
  background-color: #eff5f3;
}
.career_table td {
  padding: 10px 0;
}
.career_table td:nth-child(1) {
  width: 30%;
  text-align: center;
}
.career_table td:nth-child(2) {
  width: 70%;
}

/* ===============================================
  page-clinic
=============================================== */
.gallery_items {
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 3vw;
}
@media screen and (max-width: 1099px) {
  .gallery_items {
    margin-top: 20px;
  }
}

.gallery_item {
  width: calc((100% - 6vw) / 3);
}
.gallery_item img {
  aspect-ratio: 3/2;
}
@media screen and (max-width: 1099px) {
  .gallery_item {
    width: calc((100% - 3vw) / 2);
  }
}
.gallery_item figcaption {
  text-align: center;
  margin-top: 5px;
  font-size: 1.4rem;
}

.gallery_items.facility1 .gallery_item a,
.gallery_items.facility2 .gallery_item a,
.gallery_items.inside .gallery_item a {
  aspect-ratio: 3/2;
  overflow: hidden;
}
.gallery_items.facility1 .gallery_item a img,
.gallery_items.facility2 .gallery_item a img,
.gallery_items.inside .gallery_item a img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.facility-standards__table {
  margin-top: 50px;
}
.facility-standards__table dl {
  margin-top: 20px;
}
.facility-standards__table dl div:nth-of-type(n + 2) {
  margin-top: 30px;
}
.facility-standards__table table {
  margin-top: 10px;
  background: #fff;
  width: 100%;
}
.facility-standards__table th,
.facility-standards__table td {
  border: 1px solid #109458;
  border-collapse: collapse;
  padding: 10px;
}
@media screen and (max-width: 1099px) {
  .facility-standards__table th,
  .facility-standards__table td {
    display: block;
  }
}
.facility-standards__table th {
  white-space: nowrap;
  font-weight: normal;
  background-color: #eaf7f1;
}
@media screen and (max-width: 1099px) {
  .facility-standards__table th {
    border-bottom: none;
    white-space: normal;
  }
}
.facility-standards__table tr:nth-of-type(n + 2) th {
  border-top: none;
}
.facility-standards__table .list-wrapper {
  list-style: none;
}
.facility-standards__table .list-wrapper > li {
  position: relative;
  padding-left: 12px;
}
.facility-standards__table .list-wrapper > li::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 10px;
  left: 0;
  width: 8px;
  height: 8px;
  background-color: #109458;
  border-radius: 50%;
}

/* ===============================================
  下層ページ
=============================================== */
.doctor_wrapper,
.clinic_wrapper,
.medical_wrapper,
.orthodontic-adult_wrapper,
.orthodontic-child_wrapper,
.child-dentistry_wrapper,
.flow_wrapper,
.mouthpiece_wrapper,
.wire_wrapper,
.surgical_wrapper,
.mouthguard_wrapper,
.digital_wrapper,
.partial_wrapper,
.malocclusion_wrapper,
.access_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}
@media screen and (max-width: 1099px) {
  .doctor_wrapper,
  .clinic_wrapper,
  .medical_wrapper,
  .orthodontic-adult_wrapper,
  .orthodontic-child_wrapper,
  .child-dentistry_wrapper,
  .flow_wrapper,
  .mouthpiece_wrapper,
  .wire_wrapper,
  .surgical_wrapper,
  .mouthguard_wrapper,
  .digital_wrapper,
  .partial_wrapper,
  .malocclusion_wrapper,
  .access_wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
@media screen and (max-width: 1099px) {
  .doctor_wrapper.not-rev,
  .clinic_wrapper.not-rev,
  .medical_wrapper.not-rev,
  .orthodontic-adult_wrapper.not-rev,
  .orthodontic-child_wrapper.not-rev,
  .child-dentistry_wrapper.not-rev,
  .flow_wrapper.not-rev,
  .mouthpiece_wrapper.not-rev,
  .wire_wrapper.not-rev,
  .surgical_wrapper.not-rev,
  .mouthguard_wrapper.not-rev,
  .digital_wrapper.not-rev,
  .partial_wrapper.not-rev,
  .malocclusion_wrapper.not-rev,
  .access_wrapper.not-rev {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.doctor_wrapper .medical_left,
.clinic_wrapper .medical_left,
.medical_wrapper .medical_left,
.orthodontic-adult_wrapper .medical_left,
.orthodontic-child_wrapper .medical_left,
.child-dentistry_wrapper .medical_left,
.flow_wrapper .medical_left,
.mouthpiece_wrapper .medical_left,
.wire_wrapper .medical_left,
.surgical_wrapper .medical_left,
.mouthguard_wrapper .medical_left,
.digital_wrapper .medical_left,
.partial_wrapper .medical_left,
.malocclusion_wrapper .medical_left,
.access_wrapper .medical_left {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 1099px) {
  .doctor_wrapper .medical_left,
  .clinic_wrapper .medical_left,
  .medical_wrapper .medical_left,
  .orthodontic-adult_wrapper .medical_left,
  .orthodontic-child_wrapper .medical_left,
  .child-dentistry_wrapper .medical_left,
  .flow_wrapper .medical_left,
  .mouthpiece_wrapper .medical_left,
  .wire_wrapper .medical_left,
  .surgical_wrapper .medical_left,
  .mouthguard_wrapper .medical_left,
  .digital_wrapper .medical_left,
  .partial_wrapper .medical_left,
  .malocclusion_wrapper .medical_left,
  .access_wrapper .medical_left {
    width: 100%;
  }
}
.doctor_wrapper .medical_left .btn_wrapper,
.clinic_wrapper .medical_left .btn_wrapper,
.medical_wrapper .medical_left .btn_wrapper,
.orthodontic-adult_wrapper .medical_left .btn_wrapper,
.orthodontic-child_wrapper .medical_left .btn_wrapper,
.child-dentistry_wrapper .medical_left .btn_wrapper,
.flow_wrapper .medical_left .btn_wrapper,
.mouthpiece_wrapper .medical_left .btn_wrapper,
.wire_wrapper .medical_left .btn_wrapper,
.surgical_wrapper .medical_left .btn_wrapper,
.mouthguard_wrapper .medical_left .btn_wrapper,
.digital_wrapper .medical_left .btn_wrapper,
.partial_wrapper .medical_left .btn_wrapper,
.malocclusion_wrapper .medical_left .btn_wrapper,
.access_wrapper .medical_left .btn_wrapper {
  padding-top: 30px;
}
.doctor_wrapper .medical_right,
.clinic_wrapper .medical_right,
.medical_wrapper .medical_right,
.orthodontic-adult_wrapper .medical_right,
.orthodontic-child_wrapper .medical_right,
.child-dentistry_wrapper .medical_right,
.flow_wrapper .medical_right,
.mouthpiece_wrapper .medical_right,
.wire_wrapper .medical_right,
.surgical_wrapper .medical_right,
.mouthguard_wrapper .medical_right,
.digital_wrapper .medical_right,
.partial_wrapper .medical_right,
.malocclusion_wrapper .medical_right,
.access_wrapper .medical_right {
  width: 50%;
}
@media screen and (max-width: 1099px) {
  .doctor_wrapper .medical_right,
  .clinic_wrapper .medical_right,
  .medical_wrapper .medical_right,
  .orthodontic-adult_wrapper .medical_right,
  .orthodontic-child_wrapper .medical_right,
  .child-dentistry_wrapper .medical_right,
  .flow_wrapper .medical_right,
  .mouthpiece_wrapper .medical_right,
  .wire_wrapper .medical_right,
  .surgical_wrapper .medical_right,
  .mouthguard_wrapper .medical_right,
  .digital_wrapper .medical_right,
  .partial_wrapper .medical_right,
  .malocclusion_wrapper .medical_right,
  .access_wrapper .medical_right {
    width: 100%;
  }
  .doctor_wrapper .medical_right figure,
  .clinic_wrapper .medical_right figure,
  .medical_wrapper .medical_right figure,
  .orthodontic-adult_wrapper .medical_right figure,
  .orthodontic-child_wrapper .medical_right figure,
  .child-dentistry_wrapper .medical_right figure,
  .flow_wrapper .medical_right figure,
  .mouthpiece_wrapper .medical_right figure,
  .wire_wrapper .medical_right figure,
  .surgical_wrapper .medical_right figure,
  .mouthguard_wrapper .medical_right figure,
  .digital_wrapper .medical_right figure,
  .partial_wrapper .medical_right figure,
  .malocclusion_wrapper .medical_right figure,
  .access_wrapper .medical_right figure {
    margin: 0 auto;
  }
  .doctor_wrapper .medical_right figure img,
  .clinic_wrapper .medical_right figure img,
  .medical_wrapper .medical_right figure img,
  .orthodontic-adult_wrapper .medical_right figure img,
  .orthodontic-child_wrapper .medical_right figure img,
  .child-dentistry_wrapper .medical_right figure img,
  .flow_wrapper .medical_right figure img,
  .mouthpiece_wrapper .medical_right figure img,
  .wire_wrapper .medical_right figure img,
  .surgical_wrapper .medical_right figure img,
  .mouthguard_wrapper .medical_right figure img,
  .digital_wrapper .medical_right figure img,
  .partial_wrapper .medical_right figure img,
  .malocclusion_wrapper .medical_right figure img,
  .access_wrapper .medical_right figure img {
    display: block;
    max-width: 450px;
    margin: 0 auto;
  }
}

.mouthpiece_center {
  width: 50%;
  margin: 0 auto;
}
@media screen and (max-width: 1099px) {
  .mouthpiece_center {
    width: 100%;
  }
  .mouthpiece_center figure {
    margin: 0 auto;
  }
  .mouthpiece_center figure img {
    display: block;
    max-width: 450px;
    margin: 0 auto;
  }
}

.doctor_wrapper.not-rev .doctor_left,
.doctor_wrapper.not-rev .clinic_left,
.clinic_wrapper.not-rev .doctor_left,
.clinic_wrapper.not-rev .clinic_left,
.access_wrapper.not-rev .doctor_left,
.access_wrapper.not-rev .clinic_left {
  width: 30%;
}
@media screen and (max-width: 1099px) {
  .doctor_wrapper.not-rev .doctor_left,
  .doctor_wrapper.not-rev .clinic_left,
  .clinic_wrapper.not-rev .doctor_left,
  .clinic_wrapper.not-rev .clinic_left,
  .access_wrapper.not-rev .doctor_left,
  .access_wrapper.not-rev .clinic_left {
    width: 100%;
  }
}
.doctor_wrapper.not-rev .doctor_left figure,
.doctor_wrapper.not-rev .clinic_left figure,
.clinic_wrapper.not-rev .doctor_left figure,
.clinic_wrapper.not-rev .clinic_left figure,
.access_wrapper.not-rev .doctor_left figure,
.access_wrapper.not-rev .clinic_left figure {
  margin: 0 auto;
}
.doctor_wrapper.not-rev .doctor_left figure img,
.doctor_wrapper.not-rev .clinic_left figure img,
.clinic_wrapper.not-rev .doctor_left figure img,
.clinic_wrapper.not-rev .clinic_left figure img,
.access_wrapper.not-rev .doctor_left figure img,
.access_wrapper.not-rev .clinic_left figure img {
  display: block;
  max-width: 450px;
  margin: 0 auto;
}
.doctor_wrapper.not-rev .doctor_right,
.doctor_wrapper.not-rev .clinic_right,
.clinic_wrapper.not-rev .doctor_right,
.clinic_wrapper.not-rev .clinic_right,
.access_wrapper.not-rev .doctor_right,
.access_wrapper.not-rev .clinic_right {
  width: 70%;
}
@media screen and (max-width: 1099px) {
  .doctor_wrapper.not-rev .doctor_right,
  .doctor_wrapper.not-rev .clinic_right,
  .clinic_wrapper.not-rev .doctor_right,
  .clinic_wrapper.not-rev .clinic_right,
  .access_wrapper.not-rev .doctor_right,
  .access_wrapper.not-rev .clinic_right {
    width: 100%;
  }
}
.doctor_wrapper.not-rev .access_left,
.clinic_wrapper.not-rev .access_left,
.access_wrapper.not-rev .access_left {
  width: 60%;
}
@media screen and (max-width: 1099px) {
  .doctor_wrapper.not-rev .access_left,
  .clinic_wrapper.not-rev .access_left,
  .access_wrapper.not-rev .access_left {
    width: 100%;
  }
}
.doctor_wrapper.not-rev .access_left figure,
.clinic_wrapper.not-rev .access_left figure,
.access_wrapper.not-rev .access_left figure {
  margin: 0 auto;
}
.doctor_wrapper.not-rev .access_left figure img,
.clinic_wrapper.not-rev .access_left figure img,
.access_wrapper.not-rev .access_left figure img {
  display: block;
  max-width: 600px;
}
.doctor_wrapper.not-rev .access_right,
.clinic_wrapper.not-rev .access_right,
.access_wrapper.not-rev .access_right {
  width: 40%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 1099px) {
  .doctor_wrapper.not-rev .access_right,
  .clinic_wrapper.not-rev .access_right,
  .access_wrapper.not-rev .access_right {
    width: 100%;
  }
}
.doctor_wrapper.not-rev .access_right figure,
.clinic_wrapper.not-rev .access_right figure,
.access_wrapper.not-rev .access_right figure {
  margin-top: 20px;
}

.malocclusion_wrapper {
  width: 100%;
}

.doctor_left,
.clinic_left,
.orthodontic-adult_left,
.orthodontic-child_left,
.child-dentistry_left,
.flow_left,
.mouthpiece_left,
.wire_left,
.surgical_left,
.mouthguard_left,
.digital_left,
.partial_left,
.malocclusion_left {
  width: 70%;
}
@media screen and (max-width: 1099px) {
  .doctor_left,
  .clinic_left,
  .orthodontic-adult_left,
  .orthodontic-child_left,
  .child-dentistry_left,
  .flow_left,
  .mouthpiece_left,
  .wire_left,
  .surgical_left,
  .mouthguard_left,
  .digital_left,
  .partial_left,
  .malocclusion_left {
    width: 100%;
  }
}

.doctor_right,
.clinic_right,
.orthodontic-adult_right,
.orthodontic-child_right,
.child-dentistry_right,
.flow_right,
.mouthpiece_right,
.wire_right,
.surgical_right,
.mouthguard_right,
.digital_right,
.partial_right,
.malocclusion_right {
  width: 30%;
}
@media screen and (max-width: 1099px) {
  .doctor_right,
  .clinic_right,
  .orthodontic-adult_right,
  .orthodontic-child_right,
  .child-dentistry_right,
  .flow_right,
  .mouthpiece_right,
  .wire_right,
  .surgical_right,
  .mouthguard_right,
  .digital_right,
  .partial_right,
  .malocclusion_right {
    width: 100%;
  }
}
.doctor_right figure,
.clinic_right figure,
.orthodontic-adult_right figure,
.orthodontic-child_right figure,
.child-dentistry_right figure,
.flow_right figure,
.mouthpiece_right figure,
.wire_right figure,
.surgical_right figure,
.mouthguard_right figure,
.digital_right figure,
.partial_right figure,
.malocclusion_right figure {
  margin: 0 auto;
}
.doctor_right figure img,
.clinic_right figure img,
.orthodontic-adult_right figure img,
.orthodontic-child_right figure img,
.child-dentistry_right figure img,
.flow_right figure img,
.mouthpiece_right figure img,
.wire_right figure img,
.surgical_right figure img,
.mouthguard_right figure img,
.digital_right figure img,
.partial_right figure img,
.malocclusion_right figure img {
  display: block;
  max-width: 450px;
  margin: 0 auto;
}

.doctor-introduction_left {
  width: 50%;
}
@media screen and (max-width: 1099px) {
  .doctor-introduction_left {
    width: 100%;
  }
}
.doctor-introduction_left figure {
  margin: 0 auto;
}
.doctor-introduction_left figure img {
  display: block;
  max-width: 450px;
  margin: 0 auto;
}

.doctor-introduction_right {
  width: 50%;
}
@media screen and (max-width: 1099px) {
  .doctor-introduction_right {
    width: 100%;
  }
}

.orthodontic-adult_lists,
.mouthpiece_lists,
.wire_lists,
.digital_lists,
.partial_lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px;
  padding-top: 20px;
}
@media screen and (max-width: 1099px) {
  .orthodontic-adult_lists,
  .mouthpiece_lists,
  .wire_lists,
  .digital_lists,
  .partial_lists {
    gap: 20px;
    padding: 0;
  }
}
.orthodontic-adult_lists li,
.mouthpiece_lists li,
.wire_lists li,
.digital_lists li,
.partial_lists li {
  width: calc((100% - 90px) / 4);
  height: auto;
  border: 1px solid #109458;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  padding: 15px;
}
@media screen and (max-width: 1099px) {
  .orthodontic-adult_lists li,
  .mouthpiece_lists li,
  .wire_lists li,
  .digital_lists li,
  .partial_lists li {
    width: calc((100% - 30px) / 2);
    max-width: 450px;
  }
}

.orthodontic-adult_lists,
.mouthpiece_lists,
.wire_lists,
.surgical_lists,
.digital_lists,
.partial_lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 30px;
  padding-top: 20px;
}
@media screen and (max-width: 1099px) {
  .orthodontic-adult_lists,
  .mouthpiece_lists,
  .wire_lists,
  .surgical_lists,
  .digital_lists,
  .partial_lists {
    gap: 20px;
    padding-top: 15px;
  }
}
.orthodontic-adult_lists.merit li,
.mouthpiece_lists.merit li,
.wire_lists.merit li,
.surgical_lists.merit li,
.digital_lists.merit li,
.partial_lists.merit li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 2px solid #f9bb28;
  background-color: #fffbf3;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 20px 15px 15px;
}
.orthodontic-adult_lists.merit li::before,
.mouthpiece_lists.merit li::before,
.wire_lists.merit li::before,
.surgical_lists.merit li::before,
.digital_lists.merit li::before,
.partial_lists.merit li::before {
  color: #f9bb28;
}
.orthodontic-adult_lists.merit .merit_subtitle,
.mouthpiece_lists.merit .merit_subtitle,
.wire_lists.merit .merit_subtitle,
.surgical_lists.merit .merit_subtitle,
.digital_lists.merit .merit_subtitle,
.partial_lists.merit .merit_subtitle {
  font-size: 1.8rem;
  color: #c18d10;
  font-weight: 700;
  text-align: center;
  margin: 0 auto;
}
.orthodontic-adult_lists.demerit li,
.mouthpiece_lists.demerit li,
.wire_lists.demerit li,
.surgical_lists.demerit li,
.digital_lists.demerit li,
.partial_lists.demerit li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 2px solid #9aaebb;
  background-color: #f9f9f9;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 20px 15px 15px;
}
.orthodontic-adult_lists.demerit li::before,
.mouthpiece_lists.demerit li::before,
.wire_lists.demerit li::before,
.surgical_lists.demerit li::before,
.digital_lists.demerit li::before,
.partial_lists.demerit li::before {
  color: #9aaebb;
}
.orthodontic-adult_lists.demerit .demerit_subtitle,
.mouthpiece_lists.demerit .demerit_subtitle,
.wire_lists.demerit .demerit_subtitle,
.surgical_lists.demerit .demerit_subtitle,
.digital_lists.demerit .demerit_subtitle,
.partial_lists.demerit .demerit_subtitle {
  font-size: 1.8rem;
  color: #67747d;
  font-weight: 700;
  text-align: center;
  margin: 0 auto;
}

.mouthpiece_lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  padding-top: 20px;
}
@media screen and (max-width: 1099px) {
  .mouthpiece_lists {
    gap: 20px;
    padding-top: 15px;
  }
}
.mouthpiece_lists li {
  width: 100%;
}
@media screen and (max-width: 1099px) {
  .mouthpiece_lists li {
    width: 100%;
    max-width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .orthodontic-adult_lists li,
  .digital_lists li {
    width: 100%;
  }
}
@media screen and (min-width: 1100px) {
  .orthodontic-adult_lists li .merit_subtitle.text-min,
  .digital_lists li .merit_subtitle.text-min {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 1099px) {
  .orthodontic-adult_lists li .merit_subtitle.text-min,
  .digital_lists li .merit_subtitle.text-min {
    font-size: 1.8rem;
  }
}

.wire_lists li,
.surgical_lists li,
.partial_lists li {
  width: calc((100% - 60px) / 3);
}
@media screen and (max-width: 768px) {
  .wire_lists li,
  .surgical_lists li,
  .partial_lists li {
    width: 100%;
  }
}

.orthodontic-adult_title,
.mouthpiece_title,
.wire_title,
.surgical_title,
.digital_title,
.partial_title,
.malocclusion_title {
  width: 100%;
  font-size: 1.8rem;
  font-weight: 700;
  color: #109458;
  text-align: center;
  padding-bottom: 15px;
  position: relative;
}
@media screen and (max-width: 1099px) {
  .orthodontic-adult_title,
  .mouthpiece_title,
  .wire_title,
  .surgical_title,
  .digital_title,
  .partial_title,
  .malocclusion_title {
    padding: 10px 0;
    font-size: clamp(1.4rem, 2vw, 1.8rem);
  }
}

.orthodontic-treatment_lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px;
  padding-top: 20px;
}
@media screen and (max-width: 1099px) {
  .orthodontic-treatment_lists {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    padding: 0;
  }
}
.orthodontic-treatment_lists li {
  width: calc((100% - 30px) / 2);
  height: auto;
  border: 1px solid #109458;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  padding: 15px;
}
@media screen and (max-width: 1099px) {
  .orthodontic-treatment_lists li {
    width: 100%;
  }
}
.orthodontic-treatment_lists .orthodontic-adult_wrapper {
  height: 100%;
}
@media screen and (max-width: 1099px) {
  .orthodontic-treatment_lists .orthodontic-adult_wrapper {
    width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media screen and (max-width: 768px) {
  .orthodontic-treatment_lists .orthodontic-adult_wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.orthodontic-treatment_lists .orthodontic-adult_left {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1099px) {
  .orthodontic-treatment_lists .orthodontic-adult_left {
    width: calc(70% - 20px);
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .orthodontic-treatment_lists .orthodontic-adult_left {
    width: 100%;
  }
}
.orthodontic-treatment_lists .orthodontic-adult_left .btn_wrapper {
  padding-top: 15px;
}
@media screen and (max-width: 1099px) {
  .orthodontic-treatment_lists .orthodontic-adult_left .btn_wrapper {
    padding-top: 30px;
  }
}
@media screen and (max-width: 768px) {
  .orthodontic-treatment_lists .orthodontic-adult_left .btn_wrapper {
    padding-top: 15px;
  }
}
.orthodontic-treatment_lists .orthodontic-adult_left .btn_wrapper .btn {
  width: 100%;
}
@media screen and (max-width: 1099px) {
  .orthodontic-treatment_lists .orthodontic-adult_left .btn_wrapper .btn {
    width: 250px;
  }
}
.orthodontic-treatment_lists .orthodontic-adult_right {
  width: 50%;
}
@media screen and (max-width: 1099px) {
  .orthodontic-treatment_lists .orthodontic-adult_right {
    width: 30%;
  }
}
@media screen and (max-width: 768px) {
  .orthodontic-treatment_lists .orthodontic-adult_right {
    width: 100%;
  }
}
.orthodontic-treatment_lists .orthodontic-adult_right figure img {
  display: block;
  max-width: 240px;
  margin-left: auto;
}

.malocclusion_lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  padding-top: 20px;
}
@media screen and (max-width: 1099px) {
  .malocclusion_lists {
    gap: 20px;
    padding: 0;
  }
}
.malocclusion_lists li {
  width: 100%;
  height: auto;
  border: 1px solid #109458;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  padding: 15px;
}
@media screen and (max-width: 1099px) {
  .malocclusion_lists li {
    width: 100%;
  }
}

.malocclusion_left {
  width: 70%;
}
@media screen and (max-width: 1099px) {
  .malocclusion_left {
    width: 100%;
    display: block;
  }
}

.malocclusion-top_right {
  width: 30%;
}
@media screen and (max-width: 1099px) {
  .malocclusion-top_right {
    width: 100%;
  }
}
.malocclusion-top_right figure {
  margin: 0 auto;
}
.malocclusion-top_right figure img {
  display: block;
  max-width: 450px;
  margin: 0 auto;
}

.malocclusion_right {
  width: 30%;
}
@media screen and (max-width: 1099px) {
  .malocclusion_right {
    width: 100%;
  }
}
.malocclusion_right figure {
  background-color: #eaf7f1;
  padding: 30px;
}
.malocclusion_right figure img {
  display: block;
  max-width: 200px;
}

.box_lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px;
}
@media screen and (max-width: 1099px) {
  .box_lists {
    gap: 20px;
    padding: 0;
  }
}
.box_lists li {
  width: calc((100% - 60px) / 3);
  height: auto;
  border: 1px solid #109458;
  background-color: #fff;
}
@media screen and (max-width: 1099px) {
  .box_lists li {
    width: calc((100% - 30px) / 2);
    max-width: 400px;
  }
}
@media screen and (max-width: 768px) {
  .box_lists li {
    width: 100%;
  }
}
.box_lists li .box_title {
  width: 100%;
  font-size: 1.8rem;
  font-weight: 700;
  color: #109458;
  text-align: center;
  padding: 15px 0;
  position: relative;
}
@media screen and (max-width: 1099px) {
  .box_lists li .box_title {
    padding: 10px 0;
  }
}
.box_lists li .box_title.text-min {
  font-size: 1.6rem;
}
.box_lists li .box_text {
  padding: 15px;
}
@media screen and (max-width: 1099px) {
  .box_lists li .box_text {
    padding: 10px;
  }
}

.digital_sec2 .box_lists .box_title {
  min-height: 78px;
  -ms-flex-line-pack: center;
      align-content: center;
}
@media screen and (max-width: 1099px) {
  .digital_sec2 .box_lists .box_title {
    min-height: 59px;
  }
}
@media screen and (max-width: 768px) {
  .digital_sec2 .box_lists .box_title {
    min-height: auto;
  }
}

.orthodontic-child_sec3 .top_malocclusion_item {
  width: 150px;
}
.orthodontic-child_sec3 .top_malocclusion_item .img_wrapper {
  padding: 10px;
}
.orthodontic-child_sec3 .top_malocclusion_item:nth-child(5) .top_malocclusion_title, .orthodontic-child_sec3 .top_malocclusion_item:nth-child(6) .top_malocclusion_title {
  line-height: 45px;
}
.orthodontic-child_sec3 .top_malocclusion_title {
  height: 55px;
  font-size: 1.6rem;
  padding: 5px 0;
}
.orthodontic-child_sec3 .top_malocclusion_title span {
  display: block;
  font-size: 1.4rem;
}

.flow__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.flow_lists {
  padding-left: 0;
  border-bottom: solid 1px #8b9297;
}

.flow_lists > li {
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px 0;
  border-top: solid 1px #8b9297;
}

.flow_lists > li dl dt {
  font-size: 1.2em;
  line-height: 2;
  font-weight: bold;
  margin-bottom: 10px;
}
@media screen and (max-width: 1099px) {
  .flow_lists > li dl dt {
    line-height: 1.4;
  }
}

.flow_lists > li .flow_number {
  color: #109458;
  font-size: 3.2rem;
  font-weight: 700;
  text-align: center;
  line-height: 1;
  width: 70px;
  position: relative;
  margin-top: 0;
}
@media screen and (max-width: 1099px) {
  .flow_lists > li .flow_number {
    width: auto;
    padding-right: 10px;
  }
}

.flow_lists > li .flow_number::before {
  content: "STEP";
  display: block;
  font-size: 1.2rem;
  font-weight: 400;
}

.flow_lists > li .flow_number::after {
  content: "";
  display: block;
  width: 1px;
  height: calc(100% - 45px);
  background-color: #109458;
  position: absolute;
  left: 0;
  right: 0;
  top: 50px;
  margin: auto;
}
@media screen and (max-width: 1099px) {
  .flow_lists > li .flow_number::after {
    top: 45px;
    left: -10px;
  }
}

.flow_lists > li dl dd {
  margin: 0;
}

.flow_lists > li dl {
  width: calc(100% - 70px);
  margin-top: 0.8em;
}
@media screen and (max-width: 1099px) {
  .flow_lists > li dl {
    width: 100%;
  }
}

.mouthpiece_wrapper .medical_left figure,
.mouthpiece_wrapper .medical_right figure {
  width: 100%;
  max-width: 450px;
  margin-inline: auto;
}

.malocclusion_right {
  width: 30%;
}
@media screen and (max-width: 1099px) {
  .malocclusion_right {
    width: auto;
    max-width: 160px;
    margin: 0 auto;
  }
}

/* ===============================================
  page-flow
=============================================== */
.flow_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}
@media screen and (max-width: 1099px) {
  .flow_wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.flow_wrapper.detailed-examination {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.flow_wrapper.detailed-examination .flow_top {
  width: 100%;
}
.flow_wrapper.detailed-examination .flow_bottom {
  width: 100%;
}
.flow_wrapper.detailed-examination .flow_bottom figure {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1099px) {
  .flow_wrapper.detailed-examination .flow_bottom figure {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media screen and (max-width: 768px) {
  .flow_wrapper.detailed-examination .flow_bottom figure {
    gap: 20px;
  }
}
.flow_wrapper.detailed-examination .flow_bottom figure img {
  display: inline-block;
  width: calc((100% - 40px) / 3);
  max-width: 300px;
}
@media screen and (max-width: 1099px) {
  .flow_wrapper.detailed-examination .flow_bottom figure img {
    display: block;
    max-width: 450px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  .flow_wrapper.detailed-examination .flow_bottom figure img {
    width: 100%;
  }
}

/* ===============================================
  page-case
=============================================== */
.case_item {
  position: relative;
}
.case_item:not(:first-child) {
  margin-top: 100px;
}
.case_item:not(:first-child)::after {
  content: "";
  display: block;
  width: clamp(30px, 5vw, 50px);
  height: clamp(30px, 5vw, 50px);
  background-color: #109458;
  position: absolute;
  top: -70px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-mask: url(../img/icon/arrow_down.svg?ver=u22jt56) no-repeat center center/contain;
          mask: url(../img/icon/arrow_down.svg?ver=u22jt56) no-repeat center center/contain;
}

.case_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
}
.case_wrapper li {
  display: inline-block;
  width: calc((100% - 20px) / 3);
}
.case_wrapper li:first-child {
  display: block;
  width: 100%;
  margin: 0 auto;
}
.case_wrapper li:first-child img {
  width: calc((100% - 20px) / 3);
}
.case_wrapper li img {
  width: 100%;
  max-width: 340px;
  display: block;
  margin: 0 auto;
}
.case_wrapper.side li {
  overflow: hidden;
}
.case_wrapper.side li:nth-child(5) img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center left;
     object-position: center left;
}
.case_wrapper.side li:nth-child(6) {
  margin-right: auto;
}

.x-ray_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
}
.x-ray_wrapper li {
  display: inline-block;
  width: calc((100% - 20px) / 3);
}
.x-ray_wrapper li img {
  width: 100%;
  max-width: 340px;
  display: block;
  margin: 0 auto;
}

.case_table {
  width: 100%;
  margin-top: 30px;
}
@media screen and (max-width: 1099px) {
  .case_table tr:first-child th {
    padding: 10px 10px 5px 10px;
  }
}
.case_table tr:last-child th,
.case_table tr:last-child td {
  border-bottom: 1px dashed #0ec170;
}
@media screen and (max-width: 1099px) {
  .case_table tr:last-child th {
    border-bottom: none;
  }
}
@media screen and (max-width: 1099px) {
  .case_table tr:last-child td {
    padding: 5px 10px 10px 10px;
  }
}
.case_table th,
.case_table td {
  border-top: 1px dashed #0ec170;
  padding: 5px 10px;
}
@media screen and (max-width: 1099px) {
  .case_table th,
  .case_table td {
    display: block;
  }
}
.case_table th {
  width: 20%;
  font-weight: 400;
  color: #0ec170;
  background-color: #eff5f3;
}
@media screen and (max-width: 1099px) {
  .case_table th {
    width: 100%;
  }
}
.case_table td {
  width: 80%;
  background-color: #fff;
}
@media screen and (max-width: 1099px) {
  .case_table td {
    width: 100%;
    border-top: none;
  }
}
.case_table.case_table_red {
  color: #fffbf3;
}

/* ===============================================
  page-price
=============================================== */
.price_sec1 .items .item:nth-of-type(n + 2) {
  margin-top: 80px;
}
@media screen and (max-width: 1099px) {
  .price_sec1 .items .item:nth-of-type(n + 2) {
    margin-top: 40px;
  }
}

.price_table {
  width: 100%;
  border-collapse: collapse;
}
.price_table tr th,
.price_table tr td {
  border: 1px solid #8b9297;
}
.price_table th,
.price_table td {
  border-collapse: collapse;
  vertical-align: middle;
  padding: 20px;
}
@media screen and (max-width: 1099px) {
  .price_table th,
  .price_table td {
    padding: 10px;
  }
}
.price_table th {
  width: 70%;
  background-color: #eff5f3;
  vertical-align: top;
}
.price_table th .price_title {
  color: #414141;
  font-weight: 700;
  text-align: left;
  position: relative;
}
.price_table th .price_title::after {
  content: "";
  width: 100%;
  height: 1px;
  color: #109458;
  position: absolute;
  bottom: 5px;
  left: 0;
}
.price_table th .price_detail {
  font-size: 1.4rem;
  font-weight: 400;
}
.price_table td {
  text-align: center;
}
.price_table .tax-included {
  font-size: 1.4rem;
}

.table-after_text {
  text-align: right;
}

.price_table_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.price_table_wrapper .or_table-text {
  display: block;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .orthodontic-child_table1 tr th,
  .orthodontic-child_table1 tr td,
  .orthodontic-adult_table1 tr th,
  .orthodontic-adult_table1 tr td,
  .orthodontic-adult_table2 tr th,
  .orthodontic-adult_table2 tr td,
  .orthodontic-adult_table4 tr th,
  .orthodontic-adult_table4 tr td,
  .orthodontic-adult_table5 tr th,
  .orthodontic-adult_table5 tr td {
    width: 100%;
    display: block;
  }
  .orthodontic-child_table1 tr td,
  .orthodontic-adult_table1 tr td,
  .orthodontic-adult_table2 tr td,
  .orthodontic-adult_table4 tr td,
  .orthodontic-adult_table5 tr td {
    border-top: none;
  }
  .orthodontic-child_table1 tr:not(:last-child) td,
  .orthodontic-adult_table1 tr:not(:last-child) td,
  .orthodontic-adult_table2 tr:not(:last-child) td,
  .orthodontic-adult_table4 tr:not(:last-child) td,
  .orthodontic-adult_table5 tr:not(:last-child) td {
    border-top: none;
    border-bottom: none;
  }
}

.orthodontic-child_table2,
.orthodontic-adult_table3 {
  width: 100%;
  margin: 100px auto 0;
  position: relative;
}
.orthodontic-child_table2 tr th,
.orthodontic-adult_table3 tr th {
  width: auto;
}
.orthodontic-child_table2 tr th:first-child, .orthodontic-child_table2 tr th:nth-child(3), .orthodontic-child_table2 tr th:nth-child(5),
.orthodontic-adult_table3 tr th:first-child,
.orthodontic-adult_table3 tr th:nth-child(3),
.orthodontic-adult_table3 tr th:nth-child(5) {
  width: 30%;
}
.orthodontic-child_table2 tr th:nth-child(2), .orthodontic-child_table2 tr th:nth-child(4),
.orthodontic-adult_table3 tr th:nth-child(2),
.orthodontic-adult_table3 tr th:nth-child(4) {
  width: 5%;
  font-size: 2.4rem;
  text-align: center;
  border-top: none;
  border-bottom: none;
  border-right: none;
  background-color: #fff;
}
.orthodontic-child_table2::before,
.orthodontic-adult_table3::before {
  content: "";
  width: 30px;
  height: 30px;
  display: block;
  background-color: #109458;
  position: absolute;
  top: -70px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-mask: url(../img/icon/plus.svg?ver=u22jt56) no-repeat center center/contain;
          mask: url(../img/icon/plus.svg?ver=u22jt56) no-repeat center center/contain;
}

.orthodontic-adult_table3 tr:first-child th {
  border-top: none;
  border-left: none;
  border-right: none;
  background-color: #fff;
  padding: 0 0 20px 0;
}
.orthodontic-adult_table3 tr:first-child th:first-child {
  width: 45%;
}
.orthodontic-adult_table3 tr:first-child th:nth-child(2) {
  width: 10%;
  font-size: 2.4rem;
  text-align: center;
  border-top: none;
  background-color: #fff;
}
.orthodontic-adult_table3 tr:first-child th:nth-child(3) {
  width: 45%;
}
@media screen and (max-width: 1099px) {
  .orthodontic-adult_table3 .price_title .text-min {
    font-size: 1.4rem;
  }
}

.orthodontic-adult_table3_option1,
.orthodontic-adult_table3_option2,
.orthodontic-adult_table3_option3,
.orthodontic-adult_table4_option1 {
  width: 100%;
}
.orthodontic-adult_table3_option1 th.bg-green,
.orthodontic-adult_table3_option2 th.bg-green,
.orthodontic-adult_table3_option3 th.bg-green,
.orthodontic-adult_table4_option1 th.bg-green {
  background-color: #a5e3c7;
}

.orthodontic-adult_table3_option1 {
  width: 45%;
}
@media screen and (max-width: 800px) {
  .orthodontic-adult_table3_option1 .price_title .text-min {
    font-size: 1.4rem;
  }
}

.orthodontic-adult_table4 th.bg-green {
  background-color: #a5e3c7;
}

/* ===============================================
  page-access
=============================================== */
.access_sec1 .item:nth-child(2) {
  border: solid 1px #109458;
  padding: 15px;
}
@media screen and (max-width: 1099px) {
  .access_sec1 .item:nth-child(2) {
    padding: 10px;
  }
}
.access_sec1 .item .access_wrapper.not-rev .access_left {
  width: 60%;
}
@media screen and (max-width: 1000px) {
  .access_sec1 .item .access_wrapper.not-rev .access_left {
    margin: 0 auto;
  }
}
.access_sec1 .item .access_wrapper.not-rev .access_left figure img {
  display: block;
  max-width: 600px;
}
.access_sec1 .item .access_wrapper.not-rev .access_right {
  width: 40%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 1099px) {
  .access_sec1 .item .access_wrapper.not-rev .access_right {
    width: 100%;
  }
}
.access_sec1 .item .access_wrapper.not-rev .access_right figure {
  margin-top: 20px;
}
.access_sec1 .item .access_wrapper.not-rev .access_right .access-detail_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
}
.access_sec1 .item .access_wrapper.not-rev .access_right .access-detail_wrapper img {
  width: 50%;
}
.access_sec1 .access_map iframe {
  width: 100%;
}

/* ===============================================
  page-contact
=============================================== */
.contactSec1_item:not(:first-child) {
  margin-top: 50px;
}

form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
form .contact-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 28px 0;
  border-top: 1px solid #8b9297;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1099px) {
  form .contact-item {
    display: block;
  }
}
form .contact-item:last-of-type .wpcf7-list-item {
  display: block;
  margin: 0;
}
form .contact-item .contact-item_title {
  width: 300px;
}
form .contact-item .contact-item_title label {
  display: inline-block;
  position: relative;
}
form .contact-item .contact-item_title .is-required::after {
  content: "必須";
  color: #fff;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: calc(100% + 16px);
  background-color: #e6493e;
  padding: 3px 6px;
  width: 36px;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0;
}
form .contact-item .contact-item_input {
  width: calc(100% - 300px);
}
@media screen and (max-width: 1099px) {
  form .contact-item .contact-item_input {
    width: 100%;
    margin-top: 12px;
  }
}
form .contact-item .contact-item_input span input {
  width: 100%;
  display: inline-block;
  background: #eff5f3;
  padding: 13px 16px;
}
form .contact-item .contact-item_input span input:focus {
  outline: none;
}
form .contact-item .contact-item_input-textarea {
  width: calc(100% - 300px);
}
@media screen and (max-width: 1099px) {
  form .contact-item .contact-item_input-textarea {
    width: 100%;
    margin-top: 12px;
  }
}
form .contact-item .contact-item_input-textarea textarea {
  width: 100%;
  background: #eff5f3;
  padding: 13px 16px;
}
form .contact-item .contact-item_input-textarea textarea:focus {
  outline: none;
}
form .contact-item .wpcf7-form-control-wrap [type=checkbox] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 24px;
  height: 24px;
  border: 1px solid #414141;
  background-color: #fff;
  position: relative;
}
form .contact-item .wpcf7-form-control-wrap [type=checkbox]::after {
  border-bottom: 2px solid #109458;
  border-left: 2px solid #109458;
  content: "";
  position: absolute;
  height: 14px;
  width: 24px;
  margin-top: -0.2em;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
  display: none;
}
form .contact-item .wpcf7-form-control-wrap [type=checkbox]:checked::after {
  display: block;
}
form .contact-form_submit {
  margin: 72px auto 50px;
}
form .contact-form_submit input {
  text-align: center;
  color: #fff;
  border: 1px solid #109458;
  background-color: #109458;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  padding: 17px 155px;
}
@media screen and (max-width: 1099px) {
  form .contact-form_submit input {
    width: 100%;
    padding: 10px 115px;
  }
}
form .contact-form_submit input:hover {
  background-color: #fff;
  color: #109458;
}
form .contact-form_submit input a {
  display: inline-block;
  width: 100%;
}
form .contact-form_submit .wpcf7-spinner {
  display: none;
}
form .wpcf7-response-output {
  width: 100%;
  text-align: center;
  margin: 0 auto;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  border-color: #e6493e;
}

.wpcf7 form.sent .wpcf7-response-output {
  border-color: #f9bb28;
}

.grecaptcha-badge {
  bottom: 120px !important;
}
@media screen and (max-width: 1099px) {
  .grecaptcha-badge {
    bottom: 70px !important;
  }
}

/* ===============================================
  home.php
=============================================== */
.news {
  margin: 100px 0 150px;
}
@media screen and (max-width: 1099px) {
  .news {
    margin: 50px 0 100px;
  }
}

.page_news_content {
  padding: 30px 20px;
}
@media screen and (max-width: 1099px) {
  .page_news_content {
    padding: 20px 10px;
  }
}
.page_news_content:not(:first-child) {
  border-top: 1px solid #f5f5f5;
  margin-top: 0;
}

.news_body {
  width: 90%;
  margin: 50px auto 0;
}
@media screen and (max-width: 1099px) {
  .news_body {
    margin: 20px auto 0;
    width: 100%;
  }
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 100px;
}
@media screen and (max-width: 1099px) {
  .pagination {
    margin-top: 50px;
  }
}
.pagination .prev {
  padding-left: 36px;
  background-color: #0ec170;
  border-radius: 4px;
  color: #fff;
  width: 90px;
  height: 36px;
  line-height: 36px;
  position: relative;
  text-align: left;
  display: inline-block;
  margin-left: 0;
}
.pagination .prev::before {
  position: absolute;
  content: "";
  left: 20px;
  top: 40%;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.pagination .prev:hover::before {
  left: 15px;
}
.pagination .next {
  padding-right: 36px;
  background-color: #0ec170;
  border-radius: 4px;
  color: #fff;
  width: 90px;
  height: 36px;
  line-height: 36px;
  position: relative;
  text-align: right;
  display: inline-block;
  margin-right: 0;
}
.pagination .next::after {
  position: absolute;
  content: "";
  right: 20px;
  top: 40%;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.pagination .next:hover::after {
  right: 15px;
}

.page-numbers {
  width: 34px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  background-color: #fff;
  border: 1px solid #0ec170;
  border-radius: 4px;
  display: inline-block;
  font-size: 14px;
  color: #0ec170;
  margin: 0 5px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.page-numbers:hover {
  background-color: #0ec170;
  color: #fff;
}

/* ===============================================
  single.php
=============================================== */
.single_content {
  margin: 50px 0 150px;
}

.single_title {
  margin-top: 10px;
  font-size: 2rem;
  font-weight: 700;
}

.single_body {
  margin: 30px 10px 0;
  line-height: 1.8;
}

.single_pagenation {
  margin-top: 80px;
}
@media screen and (max-width: 1099px) {
  .single_pagenation {
    margin-top: 60px;
  }
}

.pagination_single {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 80px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.pagination_single .prev a,
.pagination_single .next a {
  font-size: 14px;
  padding: 8px 16px;
  color: #fff;
  background: #0ec170;
  border-radius: 4px;
}
.pagination_single .prev_single a {
  font-size: 14px;
  padding-left: 36px;
  background-color: #0ec170;
  border-radius: 4px;
  color: #fff;
  width: 80px;
  height: 36px;
  line-height: 36px;
  position: relative;
  display: inline-block;
  -moz-text-align-last: left;
       text-align-last: left;
}
.pagination_single .prev_single a::before {
  position: absolute;
  content: "";
  left: 20px;
  top: 40%;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.pagination_single .prev_single a:hover::before {
  left: 15px;
}
.pagination_single .next_single a {
  font-size: 14px;
  padding-right: 36px;
  background-color: #0ec170;
  border-radius: 4px;
  color: #fff;
  width: 80px;
  height: 36px;
  line-height: 36px;
  position: relative;
  display: inline-block;
  text-align: right;
}
.pagination_single .next_single a::after {
  position: absolute;
  content: "";
  right: 20px;
  top: 40%;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.pagination_single .next_single a:hover::after {
  right: 15px;
}

.lists a {
  width: 120px;
  height: 36px;
  line-height: 36px;
  color: #0ec170;
  border: 1px solid #0ec170;
  border-radius: 4px;
  display: inline-block;
  text-align: center;
  margin: 0 10px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.lists a:hover {
  color: #fff;
  background: #0ec170;
}

.page_numbers.current {
  background-color: #0ec170;
  color: #fff;
  border: 1px solid #0ec170;
}

/* ==================================================
  404.php
================================================== */
.not_found {
  margin: 200px 0;
}
@media screen and (max-width: 1099px) {
  .not_found {
    margin: 100px 0;
  }
}

.not_found_wrap {
  text-align: center;
}

.not_found_head {
  font-size: clamp(5rem, 10vw, 10rem);
  font-weight: 700;
  color: #109458;
  margin-bottom: 50px;
}

.not_found_lead {
  font-size: clamp(2.5rem, 4vw, 4rem);
  color: #999999;
  margin-bottom: 40px;
}

.not_found_content {
  font-size: clamp(1.8rem, 2.5vw, 2.5rem);
  line-height: 1.5;
  color: #a8a8a8;
  margin-bottom: 100px;
}

.not_found_btn {
  padding: 20px 40px;
  color: #999999;
  background: #eeeeee;
  font-size: 1.8rem;
  border-radius: 5px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.not_found_btn:hover {
  background: #ddd;
}

/* ===============================================
  page_top
=============================================== */
.scroll_top {
  /*表示位置*/
  position: fixed;
  right: 20px;
  bottom: 50px;
  z-index: 500;
  /*はじめは非表示*/
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.5s, all 0.3s ease-out;
  transition: opacity 0.5s, all 0.3s ease-out;
  /*それぞれに0.5秒の変化のアニメーション*/
  /*縦書き*/
  /*改行禁止*/
  /*矢印の動き*/
}
@media screen and (max-width: 1099px) {
  .scroll_top {
    bottom: 20px;
    right: 10px;
  }
}

/*.scroll_viewクラスがついたら出現*/
.scroll_top.scroll_view {
  opacity: 1;
  visibility: visible;
}

/*リンク全体の aタグの形状*/
.scroll_top a {
  width: 60px;
  height: 32px;
  text-decoration: none;
  color: #fff;
  text-transform: uppercase;
  font-size: 0.9rem;
  text-align: center;
  display: block;
  padding-top: 7px;
}
@media screen and (max-width: 1099px) {
  .scroll_top a {
    padding-top: 10px;
  }
}

/*Edge IE11 hack*/
/*ページトップリンクの形状*/
.js_pagetop a::after {
  content: "";
  width: 60px;
  height: 60px;
  position: absolute;
  background: #0ec170;
  border: 1px solid #fff;
  border-radius: 60px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: -10;
}
@media screen and (max-width: 1099px) {
  .js_pagetop a::after {
    width: 45px;
    height: 45px;
  }
}

.js_pagetop a::before {
  content: "";
  width: 20px;
  height: 12px;
  display: block;
  position: absolute;
  top: -8px;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(-90deg);
          transform: translateX(-50%) rotate(-90deg);
  right: 15px;
  -webkit-mask: url(../img/icon/arrow_right.svg?ver=u22jt56) no-repeat center center/contain;
          mask: url(../img/icon/arrow_right.svg?ver=u22jt56) no-repeat center center/contain;
  background-color: #fff;
}
@media screen and (max-width: 1099px) {
  .js_pagetop a::before {
    width: 16px;
    height: 8px;
    top: -1px;
  }
}

/*Edge IE11 hack*/
_:-ms-lang(x),
.js_pagetop a::before {
  right: 0;
}

/* ===============================================
  404
=============================================== */
.not_found {
  margin: 200px 0;
}
@media screen and (max-width: 1099px) {
  .not_found {
    margin: 100px 0;
  }
}
.not_found_wrap {
  text-align: center;
}
.not_found_head {
  font-size: clamp(4rem, 2.054rem + 8.65vw, 8rem);
  color: #109458;
  font-weight: 700;
  margin-bottom: 30px;
}
.not_found_lead {
  font-size: clamp(2rem, 1.514rem + 2.16vw, 3rem);
  color: #999999;
  margin-bottom: 30px;
}
.not_found_content {
  font-size: clamp(1.6rem, 1.405rem + 0.86vw, 2rem);
  line-height: 1.5;
  color: #a8a8a8;
  margin-bottom: 60px;
}
.not_found_btn {
  padding: 20px 40px;
  color: #999999;
  background: #eeeeee;
  border-radius: 5px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.not_found_btn:hover {
  background: #ddd;
}

/* ===============================================
  page-contact-thanks
=============================================== */
.contact_thanks_head {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
}