@charset "UTF-8";
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 400;
  src: url("../font/NotoSansJP-Regular.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 700;
  src: url("../font/NotoSansJP-Bold.woff") format("woff");
  font-display: swap;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
  line-height: 1.6;
  color: #333;
  font-size: 1.4rem;
  -webkit-text-size-adjust: 100%;
}
@media screen and (min-width: 750px) {
  body {
    font-size: 1.6rem;
    background: #eeeeee;
  }
}
@media screen and (max-width: 330px) {
  body {
    font-size: 1.3rem;
  }
}

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

a {
  color: #333;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
  opacity: 0.8;
}

.red {
  color: #ff0000;
  font-weight: bold;
}

.yellow {
  color: #ffff00;
}

.line_yellow {
  background: linear-gradient(transparent 65%, #fff000 65%);
  font-weight: bold;
}

.uline {
  text-decoration: line-through;
  text-decoration-color: #ff0000;
}

sup {
  color: #646464;
  font-size: min(1rem, 0.7em);
  font-weight: normal;
  vertical-align: super;
}

small {
  display: block;
  color: #646464;
  font-size: 0.7em;
  font-weight: normal;
  text-align: left;
}

.font-small {
  display: block;
  color: #646464;
  font-size: 0.8em;
  font-weight: normal;
}

@media screen and (max-width: 749px) {
  .sp_none {
    display: none;
  }
}
@media screen and (min-width: 750px) {
  .pc_none {
    display: none;
  }
}
.btn a {
  position: relative;
  overflow: hidden;
  display: block;
  background: #ff7b00;
  color: #fff;
  font-weight: bold;
  border-bottom: 6px #ac5300 solid;
}
.btn a::after {
  content: "";
  display: block;
  width: 30px;
  height: 100%;
  position: absolute;
  top: -180px;
  left: 0;
  background-color: #FFF;
  opacity: 0;
  transform: rotate(45deg);
  animation: reflect 3s ease-in-out infinite;
}

@keyframes reflect {
  0% {
    transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  80% {
    transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }
  81% {
    transform: scale(4) rotate(45deg);
    opacity: 1;
  }
  100% {
    transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}
table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}
table th, table td {
  border: 1px solid #b9b9b9;
}

ul {
  list-style-type: none;
}
ul li {
  position: relative;
  text-align: left;
}
ul li::before {
  content: "";
  position: absolute;
}

header {
  width: 100%;
  max-width: 750px;
  background: #fff;
  margin: auto;
}
header .banner {
  position: relative;
}
header span {
  position: absolute;
  display: inline-block;
  background: #fff;
  font-size: 0.7em;
  border: #333 solid 1px;
  border-radius: 4px;
  padding: 0 0.3em 0.1em;
  opacity: 0.9;
  bottom: 5px;
  right: 10px;
}

section {
  width: 100%;
  max-width: 750px;
  margin: auto;
  background: #fff;
}

section h1 {
  position: relative;
  background-size: auto auto;
  background-color: #0abecb;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 10px, rgb(2, 184, 197) 10px, rgb(2, 184, 197) 20px);
  font-size: 1em;
  padding: 0.5em 0;
  margin-bottom: 0.8em;
}
section h1 .inner {
  display: inline-block;
  position: relative;
  font-size: min(4.6vw, 1.3em);
  color: #fff;
}
section h1 .inner .main_text {
  display: inline-block;
  color: #ffff00;
  font-size: 1.1em;
  margin-bottom: 0.2em;
}
section h1 .inner::before, section h1 .inner::after {
  content: "";
  position: absolute;
  height: 95%;
  aspect-ratio: 50/167;
  background: url(../img/title_icon.png) 0/contain no-repeat;
  bottom: 0;
  top: 50%;
}
section h1 .inner::before {
  left: -1.2em;
  transform: scale(-1, 1) translateY(-50%);
}
section h1 .inner::after {
  right: -1.2em;
  transform: translateY(-50%);
}

.section1 h2 {
  position: relative;
  display: inline-block;
  background: #f0fdff;
  font-size: 1.3em;
  border: 1px solid #8c8c8c;
  border-radius: 6px;
  margin: 0 auto 1.4em;
  padding: 0.6em 1em;
  box-sizing: border-box;
}
.section1 h2::before, .section1 h2::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 12px solid transparent;
  border-left: 12px solid transparent;
  border-bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.section1 h2::before {
  border-top: 15px solid #8c8c8c;
  top: 100%;
}
.section1 h2::after {
  border-top: 15px solid #f0f6ff;
  border-bottom: 0;
  top: 98%;
}
.section1 h2 .inner {
  position: relative;
}
.section1 h2 .inner::before, .section1 h2 .inner::after {
  content: "";
  position: absolute;
}
.section1 h2 .inner::before {
  width: 1.6em;
  height: 1.6em;
  background: url(../img/title_icon1.svg) 0/contain no-repeat;
  top: 15%;
  left: -14%;
  transform: translateY(-50%) rotate(10deg);
}
.section1 h2 .inner::after {
  width: 1.4em;
  height: 1.4em;
  background: url(../img/title_icon2.svg) 0/contain no-repeat;
  top: 22%;
  right: -1%;
  transform: translateY(-50%);
}

.table_contents {
  width: 98%;
  margin: 0 auto;
  padding-bottom: 0.2em;
  overflow-x: auto;
}

.table_section table th, .table_section table td {
  font-size: 0.8em;
  padding: 0.4em;
}
.table_section table th {
  background: #e0fbff;
  white-space: nowrap;
}
.table_section table td {
  min-width: 130px;
  vertical-align: top;
}
.table_section table td .medal {
  width: 26px;
  margin-bottom: 0.3em;
}
.table_section table td .banner {
  width: 96%;
  margin-bottom: 0.4em;
}
.table_section table td .icon {
  width: 26px;
  margin: 0.3em 0;
}
.table_section table td .mini {
  font-size: 0.9em;
}
.table_section table td .mini .red {
  font-size: 1.1em;
}
.table_section table td.td_center {
  vertical-align: middle;
}
.table_section table td ul li {
  display: inline-block;
  text-align: center;
  padding: 0.2em 0 0.3em;
}
.table_section table td.td_txt {
  text-align: left;
  padding: 0.4em 0.6em;
}
.table_section table td .btn a {
  width: 94%;
  font-size: 1.1em;
  border-radius: 6px;
  padding: 0.5em 0;
  margin: 0.4em auto 0.6em;
}
.table_section table tr:first-child td:first-of-type {
  border-top: 2px solid #ff0000;
}
.table_section table td:first-of-type {
  background: #fffaec;
  border-left: 2px solid #ff0000;
  border-right: 2px solid #ff0000;
}
.table_section table tr:last-child td:first-of-type {
  border-bottom: 2px solid #ff0000;
}
@media screen and (min-width: 750px) {
  .table_section table {
    width: 80%;
    margin-inline: auto;
  }
  .table_section table th, .table_section table td {
    font-size: 0.7em;
  }
  .table_section table td {
    width: 30%;
  }
}

.pc_small {
  padding-bottom: 4em;
}
@media screen and (min-width: 750px) {
  .pc_small {
    width: 80%;
    margin-inline: auto;
  }
}

.coupon {
  position: relative;
  background: #ffe3e3;
  padding: 1.4em 0.6em;
}

.coupon_head {
  position: absolute;
  display: inline-block;
  white-space: nowrap;
  margin: auto;
  top: -32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.coupon_head::before, .coupon_head::after {
  content: "";
  position: absolute;
  width: 20px;
  border: 20px solid #df0101;
  border-width: 18px 10px 18px;
  bottom: -10px;
}
.coupon_head::before {
  border-left-color: transparent;
  left: -25px;
}
.coupon_head::after {
  border-right-color: transparent;
  right: -25px;
}
.coupon_head h3 {
  position: relative;
  display: inline-block;
  height: 40px;
  line-height: 38px;
  background: rgb(184, 0, 0);
  background: linear-gradient(45deg, rgb(184, 0, 0) 0%, rgb(222, 21, 21) 30%, rgb(237, 26, 26) 40%, rgb(255, 39, 39) 50%, rgb(237, 26, 26) 60%, rgb(222, 21, 21) 70%, rgb(184, 0, 0) 100%);
  color: #fff;
  margin: 0;
  padding: 0 1em;
  z-index: 2;
}
.coupon_head h3::before, .coupon_head h3::after {
  content: "";
  position: absolute;
  border: none;
  border-bottom: solid 10px transparent;
  top: 100%;
}
.coupon_head h3::before {
  border-right: solid 15px #6b0000;
  left: 0;
}
.coupon_head h3::after {
  right: 0;
  border-left: solid 15px #6b0000;
}

.coupon .text_title {
  font-size: 1.2em;
  font-weight: bold;
}
.coupon .images {
  width: 80%;
  max-width: 400px;
  margin: 1em auto;
}
.coupon .btn a {
  width: 90%;
  font-size: 1.2em;
  border-radius: 8px;
  margin: 0 auto;
  padding: 0.4em 0;
}

.contents {
  padding: 2.2em 0 1em;
}

.contents h2 {
  position: relative;
  width: 94%;
  font-size: 1.3em;
  border: 2px solid #0abecb;
  border-radius: 999px;
  margin: 0 auto 1.4em;
  padding: 0.8em 0 0.5em;
}
.contents h2 .sub_title {
  position: absolute;
  background: #fff;
  white-space: nowrap;
  padding: 0 0.6em;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
}
.contents h2 .sub_title span {
  display: inline-block;
  background: #0abecb;
  color: #fff;
  font-size: 0.95em;
  border-radius: 6px;
  padding: 0 0.3em 0.1em;
}
.contents h2::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  border-style: solid;
  border-width: 20px 15px 0 15px;
  border-color: #0abecb transparent transparent;
  translate: -50% 100%;
}
.contents h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  border-style: solid;
  border-width: 17px 12px 0 12px;
  border-color: #ffffff transparent transparent;
  translate: -50% 100%;
}
.contents h2 .main_title {
  background: linear-gradient(transparent 65%, rgba(10, 190, 203, 0.4) 65%);
}
@media screen and (min-width: 750px) {
  .contents h2 {
    width: 85%;
    margin-inline: auto;
  }
}

.content_box {
  margin: 1em 0.6em 1em;
  border: 2px solid #333;
  padding-bottom: 1em;
}
.content_box .head {
  background: #0abecb;
  color: #fff;
  font-size: 1.1em;
  font-weight: bold;
  text-align: center;
  margin: 0 0 0.8em;
  padding: 0.4em 0 0.5em;
}
.content_box .inner {
  margin: 0 0.6em;
}
.content_box .inner p {
  text-align: left;
  margin-bottom: 1em;
}
.content_box .inner p:last-child {
  margin-bottom: 0;
}
.content_box .inner .images {
  width: 80%;
  text-align: center;
  margin: 0 auto 0.8em;
}
@media screen and (min-width: 750px) {
  .content_box {
    width: 85%;
    margin: 1em auto;
  }
  .content_box .inner {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    margin: 0 0.8em;
  }
  .content_box .inner .images {
    width: 38%;
    margin: 0;
  }
  .content_box .inner .txt {
    width: 60%;
  }
}

.table_area {
  width: 98%;
  margin: 0 auto 1em;
}
@media screen and (min-width: 750px) {
  .table_area {
    width: 85%;
  }
}

.table_area h4 {
  background: #e0fbff;
  font-size: 1.3em;
  padding: 0.8em 0 0.6em;
}
.table_area h4 span {
  display: inline-block;
  background: #fff;
  color: #0abecb;
  font-size: 0.9em;
  border: #0abecb 2px solid;
  border-radius: 999px;
  margin-bottom: 0.1em;
  padding: 0.1em 0.8em 0.2em;
}

.table_area .table_contents {
  width: 100%;
}

.table_area table th, .table_area table td {
  font-size: 0.8em;
  padding: 0.4em 0.6em;
}
.table_area table th {
  white-space: nowrap;
  background: #0abecb;
  color: #fff;
}
.table_area table td {
  min-width: 110px;
}
.table_area table td .table_images {
  width: 70%;
  margin: 0 auto 0.4em;
}
.table_area table td .table_text {
  display: block;
  width: 98%;
  background: #727272;
  color: #fff;
  font-weight: bold;
  border-radius: 999px;
  margin: 0 auto 0.4em;
  padding: 0.2em 0;
}
.table_area table td .table_text.table_mira {
  background: #0abecb;
}
.table_area table td .icon {
  width: 20px;
  margin: 0.2em auto;
}
.table_area table tr:first-child td:first-of-type {
  border-top: 2px solid #ff0000;
}
.table_area table td:first-of-type {
  background: #fffaec;
  border-left: 2px solid #ff0000;
  border-right: 2px solid #ff0000;
}
.table_area table tr:last-child td:first-of-type {
  border-bottom: 2px solid #ff0000;
}

.contents h3 {
  font-size: 1.4em;
  margin-bottom: 1em;
}
.contents h3 .sub_title {
  color: #0abecb;
  font-size: 0.9em;
}

.miradry_box {
  width: 94%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  margin: 0 auto 1.4em;
}
.miradry_box .icon {
  width: 29%;
}
.miradry_box .text_area {
  position: relative;
  width: 68%;
  background: #e0fbff;
  text-align: left;
  border-radius: 6px;
  padding: 0.4em 0.5em;
}
.miradry_box .text_area h4 {
  color: #0abecb;
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 0.3em;
  padding: 0 0.4em;
}
@media screen and (min-width: 750px) {
  .miradry_box {
    width: 85%;
  }
  .miradry_box .icon {
    width: 135px;
    height: 130px;
    overflow: hidden;
  }
  .miradry_box .text_area {
    width: 77%;
    padding: 0.8em 0.6em 0.4em;
  }
}

.structure {
  width: 94%;
  margin: 0 auto 1.4em;
}
@media screen and (min-width: 750px) {
  .structure {
    width: 85%;
  }
}

.structure h4 {
  position: relative;
  background: #0abecb;
  color: #fff;
  font-size: 1.2em;
  border-radius: 999px;
  margin-bottom: 1.6em;
  padding: 0.4em 0;
}
.structure h4::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  border-style: solid;
  border-width: 20px 15px 0 15px;
  border-color: #0abecb transparent transparent;
  translate: -50% 100%;
}
@media screen and (min-width: 750px) {
  .structure h4 {
    margin-bottom: 1.2em;
  }
}

.structure_flex {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: nowrap;
}
.structure_flex div {
  width: 49%;
  border: 1px solid #0abecb;
  padding: 0.6em 0.4em;
}
.structure_flex div .images {
  width: 96%;
  margin: 0 auto 0.4em;
}
.structure_flex div .text {
  text-align: left;
}

.miradry_merit, .miradry_demerit {
  width: 94%;
  background: #ffe9e9;
  border-radius: 6px;
  margin: 0 auto 1.6em;
  padding: 0.6em 0.8em;
}
.miradry_merit h4, .miradry_demerit h4 {
  position: relative;
  font-size: 1.1em;
  color: #ff6565;
  text-align: left;
  margin-bottom: 0.3em;
  padding-left: 1.2em;
}
.miradry_merit h4::before, .miradry_demerit h4::before {
  content: "";
  position: absolute;
  width: 1.2em;
  height: 1.2em;
  background: url(../img/light_icon.svg) 0/contain no-repeat;
  top: 50%;
  left: 0.2em;
  transform: translateY(-50%);
}
@media screen and (min-width: 750px) {
  .miradry_merit, .miradry_demerit {
    width: 85%;
  }
}

.miradry_merit ul li, .miradry_demerit ul li {
  padding: 0.1em 0 0.2em 1.4em;
}
.miradry_merit ul li::before, .miradry_demerit ul li::before {
  width: 1em;
  height: 1em;
  background: url(../img/check_icon.svg) 0/contain no-repeat;
  top: 7px;
  left: 0;
}

.miradry_demerit {
  background: #e9f5ff;
}
.miradry_demerit h4 {
  color: #65baff;
}
.miradry_demerit h4::before {
  background-image: url(../img/light_icon2.svg);
}

.miradry_demerit ul li::before {
  background-image: url(../img/check_icon2.svg);
}

.clinic_point h4 {
  position: relative;
  width: 86%;
  font-size: 1.2em;
  margin: 0 0 1.8em 0.6em;
  padding: 0 0 0.2em 0.2em;
  border-bottom: 2px solid #0abecb;
}
.clinic_point h4::before {
  content: "";
  position: absolute;
  right: -24px;
  bottom: -13px;
  width: 30px;
  height: 2px;
  transform: rotate(50deg);
  box-sizing: border-box;
  background-color: #0abecb;
}
.clinic_point h4::after {
  content: "";
  position: absolute;
  right: -23px;
  bottom: -28px;
  width: 8px;
  height: 8px;
  box-sizing: border-box;
  border: 1px solid #ffffff;
  border-radius: 50%;
  background-color: #0abecb;
}
@media screen and (min-width: 750px) {
  .clinic_point h4 {
    margin-left: 6%;
  }
}

.point_box {
  width: 94%;
  border: 2px solid #0abecb;
  margin: 0 auto 1em;
}
.point_box .head {
  background: #0abecb;
  color: #fff;
  font-weight: bold;
  text-align: left;
  padding: 0.4em 0.6em 0.5em;
}
.point_box .head span {
  display: inline-block;
  background: #fff;
  color: #0abecb;
  font-size: 0.9em;
  border-radius: 6px;
  margin-right: 0.5em;
  padding: 0 0.4em;
}
.point_box .images {
  width: 80%;
  margin: 0.8em auto 0.4em;
}
.point_box .text {
  text-align: left;
  margin: 0.4em;
}
@media screen and (min-width: 750px) {
  .point_box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    width: 85%;
  }
  .point_box .head {
    width: 100%;
  }
  .point_box .images {
    width: 32%;
    margin: 0.6em 0.2em 0.6em 0.6em;
  }
  .point_box .text {
    width: 64%;
    margin: 0.6em 0.6em 0.6em 0;
  }
}

.ranking {
  background: #0abecb;
  background: linear-gradient(90deg, #0abecb 0%, #21d7e4 100%);
  padding-bottom: 1px;
}
.ranking h2 {
  position: relative;
  display: inline-block;
  color: #ffff00;
  font-size: 1.3em;
  padding: 0.4em 0 0.6em;
}
.ranking h2 .mini {
  color: #fff;
  font-size: 0.9em;
  font-weight: normal;
}
.ranking h2::before, .ranking h2::after {
  content: "";
  position: absolute;
  height: 70%;
  aspect-ratio: 250/587;
  background: url(../img/title_icon2.png) 0/contain no-repeat;
  top: 50%;
  transform: translateY(-50%);
}
.ranking h2::before {
  left: -1.4em;
  transform: scale(-1, 1) translateY(-50%);
}
.ranking h2::after {
  right: -1.4em;
}
@media screen and (max-width: 330px) {
  .ranking h2::before, .ranking h2::after {
    display: none;
  }
}

.ranking_box {
  margin: 0 0.6em 1.8em;
  background: #fff;
  box-shadow: 4px 5px 10px -5px #777777;
  border-radius: 10px;
  padding: 0.7em 0 1em;
}
.ranking_box h3 {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  width: 94%;
  font-size: 1.5em;
  margin: 0 auto 0.4em;
}
.ranking_box h3 .icon {
  width: 40px;
  margin-right: 0.5em;
}
.ranking_box h3 a {
  color: #298dff;
  text-decoration: underline;
}
@media screen and (min-width: 750px) {
  .ranking_box {
    width: 90%;
    margin: 0 auto 2.2em;
  }
}

.ranking_box .title {
  color: #ff0000;
  font-weight: bold;
  font-size: 1.2em;
  margin-bottom: 0.4em;
}
.ranking_box .banner {
  width: 94%;
  margin: 0 auto 1em;
}

.ranking_box table {
  width: 94%;
  margin: 0 auto 1em;
}
.ranking_box table th, .ranking_box table td {
  font-size: 0.8em;
  padding: 0.4em 0.6em;
  text-align: left;
}
.ranking_box table th {
  width: 31%;
  background: #e0fbff;
}
.ranking_box table td {
  width: 69%;
}
.ranking_box table td ul li {
  padding-left: 1em;
}
.ranking_box table td ul li::before {
  content: "・";
  left: 0;
}

.ranking_list {
  width: 94%;
  background: #fff;
  border-radius: 10px;
  margin: 1em auto;
}
.ranking_list .list_title {
  background: #0abecb;
  color: #fff;
  font-weight: bold;
  font-size: 1.1em;
  text-align: center;
  outline: dashed 2px white;
  outline-offset: -8px;
  margin: 0;
  padding: 0.7em 0.5em 0.9em;
}

.list_box {
  border: 2px solid #0abecb;
  border-top: none;
  padding: 0.8em 0 0;
}
.list_box h4 {
  position: relative;
  background: #e0fbff;
  color: #0abecb;
  font-size: 1em;
  text-align: left;
  margin: 0 0.6em 0.2em;
  padding: 0.4em 0.4em 0.4em 2em;
}
.list_box h4::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff url(../img/check.svg) 0/contain no-repeat;
  left: 2%;
  top: 50%;
  transform: translateY(-50%);
}
.list_box p {
  margin: 0 0.8em 1em;
  font-size: 0.9em;
  text-align: left;
}

.ranking_list ul {
  border: #0abecb 2px solid;
  border-top: none;
  padding: 0.6em;
}
.ranking_list ul li {
  padding: 0.1em 0 0.1em 1.4em;
}
.ranking_list ul li::before {
  width: 1em;
  height: 1em;
  background: url(../img/list_icon.svg) 0/contain no-repeat;
  top: 6px;
  left: 0;
}

.video_box {
  width: 94%;
  margin: 0 auto 1em;
  text-align: left;
}
.video_box .video_head {
  position: relative;
  display: inline-block;
  background: #ffbe0b;
  font-size: 0.9em;
  font-weight: bold;
  border: 2px solid #333;
  padding: 0.1em 0.4em 0.2em 1.4em;
}
.video_box .video_head::before {
  content: "";
  position: absolute;
  width: 1.2em;
  height: 1.2em;
  background: url(../img/check_icon3.svg) 0/contain no-repeat;
  top: 50%;
  left: 0.4em;
  transform: translateY(-50%);
}
.video_box .video_title {
  background: #0abecb;
  color: #fff;
  font-size: 1.1em;
  font-weight: bold;
  text-align: center;
  padding: 0.4em 0 0.5em;
}
.video_box .video_wrap {
  border: 2px solid #0abecb;
  padding: 0.7em 0.6em 0.4em;
  text-align: center;
}
.video_box .video_wrap video {
  width: 100%;
  max-width: 500px;
  margin: auto;
}

.fqa {
  width: 94%;
  margin: 0 auto 1em;
}
.fqa .fqa_head {
  background: #0abecb;
  color: #fff;
  font-size: 1.1em;
  font-weight: bold;
  padding: 0.4em 0;
}
.fqa .fqa_box .qa-q, .fqa .fqa_box .qa-a {
  text-align: left;
  padding: 0.6em 1em;
}
.fqa .fqa_box .qa-q {
  background: #e0fbff;
  font-weight: bold;
}
.fqa .fqa_box .qa-mark {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2em;
  margin-right: 0.3em;
}
.fqa .fqa_box .qa-q .qa-mark {
  color: #0abecb;
}

.clinic-item h4 {
  position: relative;
  display: inline-block;
  font-size: 1.2em;
  margin-bottom: 1em;
  padding: 0.5em 1.1em;
}
.clinic-item h4::before, .clinic-item h4::after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 6px;
  height: 60%;
  border: 2px solid #0abecb;
}
.clinic-item h4::before {
  left: 6px;
  border-right: none;
}
.clinic-item h4::after {
  right: 6px;
  border-left: none;
}

.region-selector {
  width: 94%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.region-selector .region-card {
  width: 31%;
  background: #e2e2e2;
  font-size: 0.9em;
  font-weight: bold;
  border-radius: 12px;
  margin-bottom: 0.8em;
  padding: 0.4em 0.6em;
  cursor: pointer;
  transition: all 0.3s ease;
}
.region-selector .region-card.active {
  background: #0abecb;
  color: #fff;
}
.region-selector::after {
  content: "";
  width: 31%;
}

.region-content {
  display: none;
  background: #fff;
  border-top: 1px solid #ddd;
  padding-top: 1em;
}
.region-content.active {
  display: block;
}
.region-content table th {
  width: 20%;
  background: #eeeeee;
  text-align: center;
}
.region-content table td {
  width: 80%;
}

.rank_img {
  width: 92%;
  max-width: 400px;
  margin: 0 auto 1em;
}

.btn_box {
  position: relative;
}
.btn_box .cta_txt {
  position: absolute;
  white-space: nowrap;
  background: #fff;
  color: #ff7b00;
  border: 2px solid #ff7b00;
  font-weight: bold;
  border-radius: 999px;
  padding: 0.2em 1em;
  top: -20px;
  left: 50%;
  z-index: 2;
  transform: translateX(-50%);
}
.btn_box a {
  width: 94%;
  font-size: 1.1em;
  border-radius: 10px;
  margin: 2.4em auto 0.4em;
  padding: 1em 0 0.6em;
}

.pc_rank {
  width: 94%;
  margin: 3em auto 0;
}

.table_bottom {
  padding: 0.3em 0 1.2em;
}

.table_bottom h2 {
  position: relative;
  font-size: 1.2em;
  border-bottom: 3px solid #0abecb;
  margin-bottom: 1.2em;
  padding: 0.5em 0.7em 0.4em;
}
.table_bottom h2 span {
  color: #0abecb;
}
.table_bottom h2::before, .table_bottom h2::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 15px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  left: 30px;
  bottom: -15px;
}
.table_bottom h2::before {
  background-color: #0abecb;
}
.table_bottom h2::after {
  bottom: -11px;
  background-color: #fff;
}

.table_bottom table {
  margin: 0 auto 0.4em;
}
.table_bottom table th, .table_bottom table td {
  font-size: 0.9em;
  padding: 0.6em;
  white-space: nowrap;
}
.table_bottom table th {
  background: #e0fbff;
  color: #fff;
  color: #0abecb;
}
.table_bottom table td .banner {
  width: 90%;
  margin-bottom: 0.3em;
}
.table_bottom table td .icon {
  width: 20px;
  margin: 0.2em 0;
}
.table_bottom table td .btn a {
  width: 100%;
  border-radius: 6px;
  padding: 0.4em 0.8em;
}
@media screen and (min-width: 750px) {
  .table_bottom table {
    width: 90%;
  }
  .table_bottom table th, .table_bottom table td {
    font-size: 0.8em;
  }
  .table_bottom table th:last-child, .table_bottom table td:last-child {
    display: none;
  }
}

@media screen and (min-width: 750px) {
  .table_small {
    width: 92%;
    margin: auto;
  }
}
@media screen and (min-width: 750px) {
  .bottom_wrap {
    padding-bottom: 1px;
  }
}
.bottom_wrap h2 {
  position: relative;
  width: 96%;
  background: #e0fbff;
  color: #0abecb;
  font-size: 1.2em;
  border-radius: 8px;
  margin: 0 auto 1em;
  padding: 0.4em 0;
}
.bottom_wrap h2::before {
  position: absolute;
  content: "";
  width: 15px;
  height: 15px;
  background: #e0fbff;
  left: 50%;
  bottom: -7px;
  transform: translateX(-50%) rotate(-45deg);
}
@media screen and (min-width: 750px) {
  .bottom_wrap h2 {
    width: 90%;
  }
}

.bottom_box {
  width: 94%;
  border: 1px solid #dfdfdf;
  border-radius: 6px;
  margin: 0 auto 1em;
  padding-bottom: 1em;
}
.bottom_box .title {
  font-size: 1.2em;
  color: #ff0000;
  font-weight: bold;
  margin: 0.4em 0;
}
.bottom_box .banner {
  width: 94%;
  max-width: 300px;
  margin: 0 auto 1em;
}
.bottom_box .txt_box {
  width: 94%;
  text-align: left;
  border: 1px solid #c0c0c0;
  margin: 0 auto 1em;
  padding: 0.4em 0.6em;
  box-sizing: border-box;
  font-size: 0.9em;
  border-radius: 5px;
}

footer {
  display: block;
  width: 100%;
  background: #0abecb;
  color: #fff;
  text-align: center;
  margin-bottom: 7em;
  padding: 0.8em 0;
}
footer ul {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  margin-bottom: 0.2em;
}
footer ul li {
  padding: 0 1.2em;
  border-right: 1px solid #fff;
  border-left: 1px solid #fff;
}

.modal_wrap input {
  display: none;
}
.modal_wrap .modal_overlay {
  display: flex;
  justify-content: center;
  overflow: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  background-color: rgba(50, 50, 50, 0.6);
  opacity: 0;
  transition: opacity 0.2s, transform 0s 0.2s;
  transform: scale(0);
}
.modal_wrap .modal_trigger {
  position: absolute;
  width: 100%;
  height: 100%;
}
.modal_wrap .modal_content {
  position: absolute;
  top: 50%;
  left: 50%;
  align-self: flex-start;
  width: 90%;
  max-width: 500px;
  box-sizing: border-box;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  z-index: 2000;
}
.modal_wrap input:checked ~ .modal_overlay {
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.2s;
}
.modal_wrap input[type=checkbox]:checked ~ #example {
  animation: 0.4s linear rotation1;
  background: #fff;
  padding: 0 0 0.1em;
}
.modal_wrap .modal_box {
  background: #0abecb;
  color: #fff;
  font-size: 1.4em;
  font-weight: bold;
  margin-bottom: 1em;
  padding: 0.3em 0 0.4em;
}
.modal_wrap .modal_box .mini {
  font-size: 0.8em;
}
.modal_wrap .banner {
  width: 94%;
  max-width: 300px;
  margin: 0 auto 1em;
}
.modal_wrap .btn a {
  width: 90%;
  border-radius: 6px;
  margin: 0 auto 1em;
  padding: 0.6em;
}

.close-btn {
  display: block;
  position: absolute;
  top: -24px;
  right: 0px;
  width: 24px;
  height: 24px;
  background: #333;
}
.close-btn::after, .close-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 3px;
  height: 10px;
  background: #fff;
}
.close-btn::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.close-btn::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

@keyframes rotation1 {
  0% {
    transform: rotate(0) scale(0.4);
  }
  100% {
    transform: rotate(360deg) scale(1);
  }
}
.foot_float {
  position: fixed;
  z-index: 1000;
  bottom: 0;
  right: 0;
  background: rgba(10, 190, 203, 0.8);
  width: 100%;
}

.foot_flex {
  display: flex;
  max-width: 600px;
  margin: auto;
  padding: 0.6em 0.6em 0.8em;
}

.foot_flex .foot_banner {
  width: 30%;
  margin: 0.4em 0;
}

.foot_flex .foot_right {
  width: 68%;
  margin-left: 0.6em;
}

.foot_flex .foot_right p {
  font-size: 1.2em;
  font-weight: bold;
  color: #fff000;
  text-align: center;
  margin-bottom: 0.3em;
}

.foot_btn a {
  display: block;
  border-radius: 10px;
  box-sizing: border-box;
  background: #ff7b00;
  border-bottom: 5px #ac5300 solid;
  font-weight: bold;
  color: #fff;
  padding: 0.4em 0 0.5em;
  font-size: 1.1em;
}