@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
html {
  font-size: 10px; }
  @media (max-width: 960px) and (min-width: 768px) {
    html {
      font-size: 1.30208vw; } }
  @media (max-width: 767px) {
    html {
      font-size: 2.66667vw; } }

*,
:after,
:before {
  box-sizing: border-box;
  margin: 0;
  padding: 0; }

body {
  font-size: 1.6rem;
  letter-spacing: 0;
  line-height: 175%;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif; }

.anchor_fixtop {
  display: block;
  position: relative;
  top: -15rem;
  width: 100%;
  visibility: hidden; }
  @media (max-width: 960px) {
    .anchor_fixtop {
      top: -8rem; } }

.grid-1024 {
  max-width: 105.4rem; }
.grid-675 {
  max-width: 70.5rem; }

p {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 200%;
  letter-spacing: .115rem;
  color: #333333; }

p.has-text-align-center {
  text-align: center; }

#page_top {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  width: 6rem;
  height: 6rem;
  opacity: 0;
  border: #FFF solid .1rem;
  background: #70a9db url(assets/img/page-top.svg) no-repeat center;
  border-radius: 100%;
  background-size: 2.1rem;
  cursor: pointer;
  outline: none;
  z-index: 50; }
  #page_top.show {
    opacity: 1; }
    #page_top.show:hover {
      opacity: 0.8; }
  @media (max-width: 960px) {
    #page_top {
      right: 1.5rem;
      bottom: 3rem;
      width: 5rem;
      height: 5rem;
      position: fixed; }
      #page_top.fixed {
        bottom: 3rem; } }
  @media (max-width: 767px) {
    #page_top {
      bottom: 3rem; } }

.wow_custom {
  opacity: 0;
  -webkit-transform: translate(0, 35px);
  transform: translate(0, 35px);
  transition: all 0.5s ease; }
  .wow_custom.show {
    opacity: 1;
    -webkit-transform: none;
    transform: none; }
    .wow_custom.show.wow_vz_02 {
      animation: fade_in_0 500ms 500ms linear;
      animation-fill-mode: forwards; }
    .wow_custom.show.wow_vz_03 {
      animation: fade_in_0 500ms 1000ms linear;
      animation-fill-mode: forwards; }
    .wow_custom.show.wow_vz_04 {
      animation: fade_in_0 500ms 1500ms linear;
      animation-fill-mode: forwards; }
    .wow_custom.show.wow_vz_05 {
      animation: fade_in_0 500ms 2000ms linear;
      animation-fill-mode: forwards; }

@keyframes fade_in_0 {
  0% {
    opacity: 0;
    transform: translate3d(0, 35px, 0); }
  100% {
    opacity: 1;
    transform: translateZ(0); } }
@keyframes fade_in_1 {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
@keyframes fade_in {
  0% {
    opacity: 0;
    position: relative;
    top: 100px; }
  100% {
    position: relative;
    top: 0px;
    opacity: 1; } }
@keyframes fade_left {
  0% {
    opacity: 0;
    transform: translate3d(-100px, 0, 0); }
  100% {
    opacity: 1;
    transform: translateZ(0); } }
@keyframes fade_right {
  0% {
    opacity: 0;
    transform: translate3d(100px, 0, 0); }
  100% {
    opacity: 1;
    transform: translateZ(0); } }
.fade-left.show {
  animation: fade_left 300ms 200ms ease-in-out;
  animation-fill-mode: forwards; }

.fade-right.show {
  animation: fade_right 300ms 200ms ease-in-out;
  animation-fill-mode: forwards; }

[data-animation="fade-in"].show {
  animation: fade_in_1 500ms 1s ease-in-out;
  animation-fill-mode: forwards; }

.wow_custom_no {
  opacity: 0;
  position: relative;
  z-index: 1; }

@media (max-width: 1280px) and (min-width: 960.5px) {
  body,
  p {
    font-size: 2rem; } }
@media (max-width: 960px) {
  body,
  p {
    font-size: 1.5rem; }

  p {
    letter-spacing: 0;
    line-height: 175%;
    font-size: 1.5rem; } }
:root {
  --wp--preset--color--black: #000000;
  --wp--preset--color--cyan-bluish-gray: #abb8c3;
  --wp--preset--color--white: #ffffff;
  --wp--preset--color--pale-pink: #f78da7;
  --wp--preset--color--vivid-red: #cf2e2e;
  --wp--preset--color--luminous-vivid-orange: #ff6900;
  --wp--preset--color--luminous-vivid-amber: #fcb900;
  --wp--preset--color--light-green-cyan: #7bdcb5;
  --wp--preset--color--vivid-green-cyan: #00d084;
  --wp--preset--color--pale-cyan-blue: #8ed1fc;
  --wp--preset--color--vivid-cyan-blue: #0693e3;
  --wp--preset--color--vivid-purple: #9b51e0; }

.d-block {
  display: block; }

.d-inline {
  display: inline; }

.d-inline-block {
  display: inline-block; }

.d-flex {
  display: flex;
  flex-wrap: wrap; }

.d-inline-flex {
  display: inline-flex; }

.d-grid {
  display: grid; }

.d-inline-grid {
  display: inline-grid; }

.d-none {
  display: none; }

.pos-static {
  position: static; }

.pos-relative {
  position: relative; }

.pos-absolute {
  position: absolute; }

.pos-fixed {
  position: fixed; }

.pos-sticky {
  position: sticky; }

.justify-start {
  justify-content: flex-start; }

.justify-center {
  justify-content: center; }

.justify-end {
  justify-content: flex-end; }

.justify-between {
  justify-content: space-between; }

.justify-around {
  justify-content: space-around; }

.items-start {
  align-items: flex-start; }

.items-center {
  align-items: center; }

.items-end {
  align-items: flex-end; }

.items-stretch {
  align-items: stretch; }

.text-left {
  text-align: left; }

.text-center {
  text-align: center; }

.text-right {
  text-align: right; }

.text-justify {
  text-align: justify; }

.overflow-visible {
  overflow: visible; }

.overflow-hidden {
  overflow: hidden; }

.overflow-scroll {
  overflow: scroll; }

.overflow-auto {
  overflow: auto; }

.visibility-visible {
  visibility: visible; }

.visibility-hidden {
  visibility: hidden; }

.visibility-collapse {
  visibility: collapse; }

.cursor-auto {
  cursor: auto; }

.cursor-pointer {
  cursor: pointer; }

.cursor-default {
  cursor: default; }

.cursor-not-allowed {
  cursor: not-allowed; }

.cursor-grab {
  cursor: grab; }

.object-contain {
  object-fit: contain; }

.object-cover {
  object-fit: cover; }

.object-fill {
  object-fit: fill; }

.object-none {
  object-fit: none; }

.object-scale-down {
  object-fit: scale-down; }

.border-0 {
  border-width: 0px; }

.border-1 {
  border-width: 1px; }

.border-2 {
  border-width: 2px; }

.border-4 {
  border-width: 4px; }

.border-solid {
  border-style: solid; }

.border-dashed {
  border-style: dashed; }

.border-none {
  border: none; }

.radius-0 {
  border-radius: 0px; }

.radius-4 {
  border-radius: 4px; }

.radius-8 {
  border-radius: 8px; }

.radius-16 {
  border-radius: 16px; }

.radius-24 {
  border-radius: 24px; }

.radius-50 {
  border-radius: 50px; }

.opacity-0 {
  opacity: 0; }

.opacity-1 {
  opacity: 0.01; }

.opacity-2 {
  opacity: 0.02; }

.opacity-3 {
  opacity: 0.03; }

.opacity-4 {
  opacity: 0.04; }

.opacity-5 {
  opacity: 0.05; }

.opacity-6 {
  opacity: 0.06; }

.opacity-7 {
  opacity: 0.07; }

.opacity-8 {
  opacity: 0.08; }

.opacity-9 {
  opacity: 0.09; }

.opacity-10 {
  opacity: 0.1; }

.opacity-11 {
  opacity: 0.11; }

.opacity-12 {
  opacity: 0.12; }

.opacity-13 {
  opacity: 0.13; }

.opacity-14 {
  opacity: 0.14; }

.opacity-15 {
  opacity: 0.15; }

.opacity-16 {
  opacity: 0.16; }

.opacity-17 {
  opacity: 0.17; }

.opacity-18 {
  opacity: 0.18; }

.opacity-19 {
  opacity: 0.19; }

.opacity-20 {
  opacity: 0.2; }

.opacity-21 {
  opacity: 0.21; }

.opacity-22 {
  opacity: 0.22; }

.opacity-23 {
  opacity: 0.23; }

.opacity-24 {
  opacity: 0.24; }

.opacity-25 {
  opacity: 0.25; }

.opacity-26 {
  opacity: 0.26; }

.opacity-27 {
  opacity: 0.27; }

.opacity-28 {
  opacity: 0.28; }

.opacity-29 {
  opacity: 0.29; }

.opacity-30 {
  opacity: 0.3; }

.opacity-31 {
  opacity: 0.31; }

.opacity-32 {
  opacity: 0.32; }

.opacity-33 {
  opacity: 0.33; }

.opacity-34 {
  opacity: 0.34; }

.opacity-35 {
  opacity: 0.35; }

.opacity-36 {
  opacity: 0.36; }

.opacity-37 {
  opacity: 0.37; }

.opacity-38 {
  opacity: 0.38; }

.opacity-39 {
  opacity: 0.39; }

.opacity-40 {
  opacity: 0.4; }

.opacity-41 {
  opacity: 0.41; }

.opacity-42 {
  opacity: 0.42; }

.opacity-43 {
  opacity: 0.43; }

.opacity-44 {
  opacity: 0.44; }

.opacity-45 {
  opacity: 0.45; }

.opacity-46 {
  opacity: 0.46; }

.opacity-47 {
  opacity: 0.47; }

.opacity-48 {
  opacity: 0.48; }

.opacity-49 {
  opacity: 0.49; }

.opacity-50 {
  opacity: 0.5; }

.opacity-51 {
  opacity: 0.51; }

.opacity-52 {
  opacity: 0.52; }

.opacity-53 {
  opacity: 0.53; }

.opacity-54 {
  opacity: 0.54; }

.opacity-55 {
  opacity: 0.55; }

.opacity-56 {
  opacity: 0.56; }

.opacity-57 {
  opacity: 0.57; }

.opacity-58 {
  opacity: 0.58; }

.opacity-59 {
  opacity: 0.59; }

.opacity-60 {
  opacity: 0.6; }

.opacity-61 {
  opacity: 0.61; }

.opacity-62 {
  opacity: 0.62; }

.opacity-63 {
  opacity: 0.63; }

.opacity-64 {
  opacity: 0.64; }

.opacity-65 {
  opacity: 0.65; }

.opacity-66 {
  opacity: 0.66; }

.opacity-67 {
  opacity: 0.67; }

.opacity-68 {
  opacity: 0.68; }

.opacity-69 {
  opacity: 0.69; }

.opacity-70 {
  opacity: 0.7; }

.opacity-71 {
  opacity: 0.71; }

.opacity-72 {
  opacity: 0.72; }

.opacity-73 {
  opacity: 0.73; }

.opacity-74 {
  opacity: 0.74; }

.opacity-75 {
  opacity: 0.75; }

.opacity-76 {
  opacity: 0.76; }

.opacity-77 {
  opacity: 0.77; }

.opacity-78 {
  opacity: 0.78; }

.opacity-79 {
  opacity: 0.79; }

.opacity-80 {
  opacity: 0.8; }

.opacity-81 {
  opacity: 0.81; }

.opacity-82 {
  opacity: 0.82; }

.opacity-83 {
  opacity: 0.83; }

.opacity-84 {
  opacity: 0.84; }

.opacity-85 {
  opacity: 0.85; }

.opacity-86 {
  opacity: 0.86; }

.opacity-87 {
  opacity: 0.87; }

.opacity-88 {
  opacity: 0.88; }

.opacity-89 {
  opacity: 0.89; }

.opacity-90 {
  opacity: 0.9; }

.opacity-91 {
  opacity: 0.91; }

.opacity-92 {
  opacity: 0.92; }

.opacity-93 {
  opacity: 0.93; }

.opacity-94 {
  opacity: 0.94; }

.opacity-95 {
  opacity: 0.95; }

.opacity-96 {
  opacity: 0.96; }

.opacity-97 {
  opacity: 0.97; }

.opacity-98 {
  opacity: 0.98; }

.opacity-99 {
  opacity: 0.99; }

.opacity-100 {
  opacity: 1; }

.z-0 {
  z-index: 0; }

.z-1 {
  z-index: 1; }

.z-2 {
  z-index: 2; }

.z-3 {
  z-index: 3; }

.z-4 {
  z-index: 4; }

.z-5 {
  z-index: 5; }

.z-6 {
  z-index: 6; }

.z-7 {
  z-index: 7; }

.z-8 {
  z-index: 8; }

.z-9 {
  z-index: 9; }

.z-10 {
  z-index: 10; }

.z-11 {
  z-index: 11; }

.z-12 {
  z-index: 12; }

.z-13 {
  z-index: 13; }

.z-14 {
  z-index: 14; }

.z-15 {
  z-index: 15; }

.z-16 {
  z-index: 16; }

.z-17 {
  z-index: 17; }

.z-18 {
  z-index: 18; }

.z-19 {
  z-index: 19; }

.z-20 {
  z-index: 20; }

.z-21 {
  z-index: 21; }

.z-22 {
  z-index: 22; }

.z-23 {
  z-index: 23; }

.z-24 {
  z-index: 24; }

.z-25 {
  z-index: 25; }

.z-26 {
  z-index: 26; }

.z-27 {
  z-index: 27; }

.z-28 {
  z-index: 28; }

.z-29 {
  z-index: 29; }

.z-30 {
  z-index: 30; }

.z-31 {
  z-index: 31; }

.z-32 {
  z-index: 32; }

.z-33 {
  z-index: 33; }

.z-34 {
  z-index: 34; }

.z-35 {
  z-index: 35; }

.z-36 {
  z-index: 36; }

.z-37 {
  z-index: 37; }

.z-38 {
  z-index: 38; }

.z-39 {
  z-index: 39; }

.z-40 {
  z-index: 40; }

.z-41 {
  z-index: 41; }

.z-42 {
  z-index: 42; }

.z-43 {
  z-index: 43; }

.z-44 {
  z-index: 44; }

.z-45 {
  z-index: 45; }

.z-46 {
  z-index: 46; }

.z-47 {
  z-index: 47; }

.z-48 {
  z-index: 48; }

.z-49 {
  z-index: 49; }

.z-50 {
  z-index: 50; }

.text-uppercase {
  text-transform: uppercase; }

.text-lowercase {
  text-transform: lowercase; }

.text-nowrap {
  white-space: nowrap; }

.text-ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap; }

.transition {
  transition: all 0.3s ease; }

.transition-fast {
  transition: all 0.15s ease; }

.transition-slow {
  transition: all 0.6s ease; }

@media (max-width: 576px) {
  .sm\\:d-none {
    display: none; }

  .sm\\:text-center {
    text-align: center; } }
@media (max-width: 768px) {
  .md\\:d-none {
    display: none; }

  .md\\:text-center {
    text-align: center; } }
@media (max-width: 1024px) {
  .lg\\:d-none {
    display: none; }

  .lg\\:text-center {
    text-align: center; } }
@media (max-width: 1280px) {
  .xl\\:d-none {
    display: none; }

  .xl\\:text-center {
    text-align: center; } }
img {
  display: block;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border-style: none;
  object-fit: cover; }

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0; }

li {
  line-height: 1.6;
  margin: 0;
  padding: 0; }

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease; }

[class^="grid-"],
[class*="grid-"] {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  position: relative; }

.hv-o {
  transition: ease all 0.35s; }
  .hv-o:hover {
    opacity: 0.85; }

.txt-center, .has-text-align-center {
  text-align: center; }

.mt-10 {
  margin-top: 10rem; }
.mt-7 {
  margin-top: 7rem; }
.mt-6 {
  margin-top: 6rem; }
.mt-3 {
  margin-top: 3rem; }

.mb-12 {
  margin-bottom: 12rem; }
.mb-10 {
  margin-bottom: 10rem; }
.mb-8 {
  margin-bottom: 8rem; }
.mb-4 {
  margin-bottom: 4rem; }
.mb-3 {
  margin-bottom: 3rem; }
.mb-2 {
  margin-bottom: 2rem; }
.mb-0 {
  margin-bottom: 0 !important; }

.my-8 {
  margin: 8rem 0; }

.p-3 {
  padding: 3rem; }

@media (min-width: 960.5px) {
  .u-sp {
    display: none; } }
@media (max-width: 960px) {
  .u-pc {
    display: none; }

  .my-8 {
    margin: 6rem 0; }

  .mt-10 {
    margin-top: 6rem; }
  .mt-7, .mt-6 {
    margin-top: 4rem; }
  .mt-3 {
    margin-top: 2rem; }

  .mb-12 {
    margin-bottom: 7rem; }
  .mb-10 {
    margin-bottom: 6rem; } }
.header {
  border-bottom: #70a9db solid 3px;
  padding: 1rem;
  margin-bottom: 0.5rem; }
  .header-gp-item .logo img {
    width: 32.2rem; }
  .header-gp-item .menu li {
    border-left: #70a9db solid 1px; }
    .header-gp-item .menu li:last-child {
      border-right: #70a9db solid 1px; }
    .header-gp-item .menu li a {
      color: #70a9db;
      font-size: 1.2rem;
      font-weight: 500;
      line-height: 150%;
      letter-spacing: 0;
      display: flex;
      align-items: center;
      flex-flow: column;
      width: 18.8rem; }
  .header .menu-image-title-after.menu-image-not-hovered img, .header .menu-image-hovered.menu-image-title-after .menu-image-hover-wrapper, .header .menu-image-title-before.menu-image-title {
    width: 4.2rem;
    padding-right: 0; }
  .header .menu-image-title-before.menu-image-not-hovered img, .header .menu-image-hovered.menu-image-title-before .menu-image-hover-wrapper, .header .menu-image-title-after.menu-image-title {
    padding-left: 0; }

.sidebar-menu-01.vz-02 {
  padding: 1rem; }
  .sidebar-menu-01.vz-02 li a {
    border-bottom: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 6.4rem; }

@media (max-width: 960px) {
  .header {
    padding: 0.5rem 0; }
    .header-gp-item .logo img {
      width: 25rem; }
    .header-gp-item .menu li a {
      width: 16.6rem; }
    .header .grid-1024 {
      padding-left: .5rem;
      padding-right: 0; }

  .header .menu-image-title-after.menu-image-not-hovered img, .header .menu-image-hovered.menu-image-title-after .menu-image-hover-wrapper, .header .menu-image-title-before.menu-image-title {
    width: 2.4rem; } }
@media (max-width: 767px) {
  .header-gp-item .logo img {
    width: 12rem; }
  .header-gp-item .menu li a {
    width: 8rem; } }
.footer-wrap {
  background: #70a9db;
  padding-bottom: .5rem; }
  .footer-wrap .desc p {
    color: #FFFFFF;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: 0; }
    .footer-wrap .desc p a {
      text-decoration: underline; }
      .footer-wrap .desc p a:hover {
        text-decoration: none; }
.footer-menu li a {
  color: #FFFFFF;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 0;
  text-decoration: underline; }
  .footer-menu li a:hover {
    text-decoration: none; }

@media (max-width: 767px) {
  .footer .grid-1024 {
    padding-left: 0;
    padding-right: 0; }
  .footer-wrap {
    padding: .5rem; } }
.wp-block-table td, .wp-block-table th {
  border: 0 !important; }

.p-title-01 {
  background: #70a9db;
  padding: 1rem;
  color: #FFFFFF;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0; }
.p-title-02 {
  background: #555555;
  padding: .36rem 1.5rem;
  color: #FFFFFF;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0; }
  .p-title-02.vz-02 {
    background: #205b84;
    position: relative; }
    .p-title-02.vz-02::before {
      content: "";
      position: absolute;
      width: 1.5rem;
      height: 1.5rem;
      background: #205b84;
      bottom: -1.4rem;
      left: 50%;
      transform: translateX(-50%);
      clip-path: polygon(0 0, 50% 100%, 100% 0); }
  .p-title-02.vz-03 {
    font-size: 2.4rem;
    background: #70a9db;
    margin-bottom: 1rem; }
  .p-title-02.vz-04 {
    background: #70a9db;
    border-radius: 0.5rem;
    padding: 1rem;
    margin-bottom: 1rem; }
.p-title-03 {
  color: #555555;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0;
  border-bottom: #555555 solid 1px;
  padding-bottom: .5rem;
  margin-bottom: 1.5rem; }
.p-title-04 {
  background: #1aaebc url(assets/img/medical-ranking.png) no-repeat center top 1.4rem;
  background-size: 6.1rem;
  text-align: center;
  color: #FFFFFF;
  font-size: 5.2rem;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0;
  padding-top: 5.5rem;
  padding-bottom: 4rem;
  clip-path: polygon(0% 0%, 100% 0%, 100% calc(100% - 3.6rem), 50% 100%, 0% calc(100% - 3.6rem));
  position: relative;
  margin-bottom: 2.4rem; }
  .p-title-04::before {
    content: "";
    position: absolute;
    width: 25.5rem;
    height: 1px;
    background: #FFFFFF;
    top: 4.4rem;
    left: 4rem; }
  .p-title-04::after {
    content: "";
    position: absolute;
    width: 25.5rem;
    height: 1px;
    background: #FFFFFF;
    top: 4.4rem;
    right: 4rem; }
  .p-title-04.vz-02 {
    background-color: #813e83; }
  .p-title-04.vz-03 {
    background-color: #07345d; }
.p-title-05 {
  max-width: 53rem;
  margin-left: auto;
  margin-right: auto;
  background: #70a9db;
  border: #70a9db solid 1px;
  padding-bottom: 4.2rem;
  clip-path: polygon(0% 0%, 100% 0%, 100% calc(100% - 4.2rem), 50% 100%, 0% calc(100% - 4.2rem)); }
  .p-title-05 .title {
    color: #FFFFFF;
    font-size: 2rem;
    font-weight: 500;
    line-height: 175%;
    letter-spacing: 0;
    padding: .4rem 0; }
    .p-title-05 .title .item {
      padding-left: 2.5rem;
      background: url(assets/img/campaign_icon.png) no-repeat center left;
      background-size: 2rem; }
  .p-title-05 p {
    color: #4e555d;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 175%;
    letter-spacing: 0;
    background: #ebeff1;
    padding: 1.3rem; }
    .p-title-05 p .red {
      color: #ed2b00; }
    .p-title-05 p .line {
      background: linear-gradient(transparent 60%, gold 60%); }
.p-title-06 {
  border-top: #70a9db solid 3px;
  border-bottom: #70a9db solid 3px;
  padding: 1rem 1.5rem;
  color: #111;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 126%;
  letter-spacing: 0; }
  .p-title-06.vz-02 {
    border: 0;
    color: #FFF;
    padding: 1rem;
    background: #FF5677;
    border-radius: 1rem 1rem 0 0;
    margin: 1rem 0; }

.b-button-01 * {
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 28rem;
  height: 5rem;
  margin-top: .5rem;
  background: #2B66AC;
  box-shadow: 0 4px 4px #333;
  border-radius: 1rem;
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  transition: all 0.35s; }
  .b-button-01 *:hover {
    box-shadow: 0 0 0 #333; }
.b-button-02 {
  padding: .5rem .5rem 1rem; }
  .b-button-02 a {
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 50rem;
    height: 3.6em;
    background: #FFA800;
    box-shadow: 0 .5rem 0 #CF8800;
    border-radius: .8rem;
    text-align: center;
    color: #fff;
    font-size: 1.4rem;
    line-height: 160%;
    font-weight: bold;
    text-decoration: none;
    z-index: 0; }
    .b-button-02 a::before {
      content: "▶";
      position: absolute;
      right: 1rem;
      font-size: 1.8rem; }
    .b-button-02 a::after {
      content: "";
      position: absolute;
      width: 3rem;
      height: 100%;
      top: -18rem;
      left: 0;
      z-index: -1;
      transform: rotate(45deg);
      background: #FFFFFF;
      animation: reflection 3s cubic-bezier(0, 0.3, 0.6, 0) infinite;
      -webkit-transform: rotate(45deg);
      -webkit-animation: reflection 2.5s cubic-bezier(0, 0.3, 0.6, 0) infinite;
      -moz-transform: rotate(45deg);
      -moz-animation: reflection 2s cubic-bezier(0, 0.3, 0.6, 0) infinite;
      -ms-transform: rotate(45deg);
      -ms-animation: reflection 2s cubic-bezier(0, 0.3, 0.6, 0) infinite;
      -o-transform: rotate(45deg);
      -o-animation: reflection 2s cubic-bezier(0, 0.3, 0.6, 0) infinite; }
  .b-button-02.vz-02 {
    margin-bottom: 3rem; }
    .b-button-02.vz-02 a {
      font-size: 1.6rem;
      margin-left: auto;
      margin-right: auto;
      animation: zoom 2s linear infinite;
      -webkit-animation: zoom 2s linear infinite;
      -moz-animation: zoom 2s linear infinite; }
      .b-button-02.vz-02 a::after {
        content: none; }
.b-button-03 {
  background: #1368b0;
  padding: .5rem 1rem;
  border-radius: 2rem;
  max-width: 59rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5rem;
  color: #FFFFFF;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 175%;
  letter-spacing: 0; }

.c-list-01 {
  margin-bottom: 1rem; }
  .c-list-01 li {
    margin-bottom: .5rem; }
    .c-list-01 li:last-child {
      margin-bottom: 0; }
    .c-list-01 li a {
      display: block;
      padding: 1rem;
      border: solid 1px #999;
      border-radius: 1rem;
      background: #fff;
      text-decoration: none;
      box-shadow: 0 .2rem 0 #999;
      color: #111;
      font-size: 1.6rem;
      font-weight: 400;
      transition: all 0.35s; }
      .c-list-01 li a:hover {
        background-color: #ccc;
        box-shadow: 0 0 0 #999; }
.c-list-02 {
  gap: 1rem;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 1rem; }
  .c-list-02 li a {
    border: solid 1px #555;
    padding: .2rem;
    border-radius: .5rem;
    height: 4rem;
    position: relative;
    display: block;
    color: #333333;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 175%;
    letter-spacing: 0; }
    .c-list-02 li a::before {
      content: "▼";
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%); }

@keyframes zoom {
  0% {
    transform: scale(1); }
  25% {
    transform: scale(1.1); }
  50% {
    transform: scale(1.1); }
  75% {
    transform: scale(1); } }
@keyframes reflection {
  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; } }
.c-link-01 {
  margin-bottom: 1rem; }
  .c-link-01 a {
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 150%;
    color: #00e;
    position: relative;
    padding-left: 2rem;
    text-decoration: underline; }
    .c-link-01 a::before {
      content: "▶";
      position: absolute;
      top: 0;
      left: 0;
      color: #F00; }
    .c-link-01 a:hover {
      text-decoration: none; }
  .c-link-01.vz-02 {
    margin-bottom: 0; }
    .c-link-01.vz-02 a {
      padding-left: 2.5rem; }
      .c-link-01.vz-02 a::before {
        content: "";
        width: 2.3rem;
        height: 2.3rem;
        background: url(assets/img/link.png) no-repeat center;
        background-size: contain; }
  .c-link-01.vz-03 a {
    padding-left: 0;
    font-size: 1.4rem; }
    .c-link-01.vz-03 a::before {
      content: none; }

.i-title-01 {
  margin-bottom: 1rem;
  padding: 0 1rem; }

.p-text-01, .p-text-01 p {
  color: #808080;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 175%;
  letter-spacing: 0; }
.p-text-02 p {
  color: #843c0c;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 175%;
  letter-spacing: 0;
  margin-bottom: 2.5rem; }
  .p-text-02 p:last-child {
    margin-bottom: 0; }
  .p-text-02 p .red {
    color: #ed2b00; }
  .p-text-02 p .line {
    background: linear-gradient(transparent 60%, gold 60%); }
.p-text-02.vz-02 p {
  color: #111; }

.t-table-01 {
  padding: 0 2.4rem;
  margin-bottom: 2rem; }
  .t-table-01 .cols {
    width: calc(100% / 3);
    display: flex;
    flex-flow: column;
    border-right: 2px solid black; }
    .t-table-01 .cols:first-child {
      border-left: 2px solid black; }
    .t-table-01 .cols .rows {
      padding: .4rem;
      font-size: 1.4rem;
      border-bottom: 2px solid black; }
      .t-table-01 .cols .rows:first-child {
        color: #FFFFFF;
        border-top: 2px solid black;
        background: #205B84;
        font-size: 1.6rem; }
      .t-table-01 .cols .rows.icon {
        background: url(assets/img/compare_4.png) no-repeat center top 1rem;
        background-size: 5rem;
        padding-top: 6rem;
        height: 100%; }
        .t-table-01 .cols .rows.icon.vz-02 {
          background-image: url(assets/img/compare_3.png); }
      .t-table-01 .cols .rows .red {
        color: #ed2b00; }
      .t-table-01 .cols .rows .line {
        background: linear-gradient(transparent 60%, gold 60%); }
.t-table-02 .row {
  display: flex;
  margin-bottom: .5rem;
  border-bottom: #1368b0 solid 1px; }
  .t-table-02 .row:first-child .col:last-child {
    display: flex;
    justify-content: center; }
  .t-table-02 .row:last-child {
    margin-bottom: 0; }
  .t-table-02 .row .col {
    color: #0a315f;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 175%;
    letter-spacing: 0;
    padding: 1rem; }
    .t-table-02 .row .col:first-child {
      background: #1368b0;
      width: 12rem;
      color: #FFFFFF;
      font-weight: 700;
      text-align: center;
      display: flex;
      align-items: center;
      justify-content: center; }
    .t-table-02 .row .col:last-child {
      width: calc(100% - 12rem); }
.t-table-03 {
  padding: 1rem;
  margin-bottom: 1rem; }
  .t-table-03 tr {
    display: flex; }
    .t-table-03 tr td {
      color: #111;
      font-size: 1.6rem;
      font-weight: 400;
      line-height: 175%;
      letter-spacing: 0; }
      .t-table-03 tr td:first-child {
        font-weight: 700;
        width: 13rem;
        text-align: center; }
      .t-table-03 tr td:last-child {
        width: calc(100% - 13rem); }
.t-table-price .row {
  display: flex;
  border-bottom: 1px solid #c0c0c0; }
  .t-table-price .row:first-child {
    border-top: 1px solid #c0c0c0;
    background: #defaf5; }
    .t-table-price .row:first-child .col {
      color: #203864; }
  .t-table-price .row .col {
    border-right: 1px solid #c0c0c0;
    width: calc(100% / 3);
    text-align: center;
    padding: .8rem 0;
    color: #111111;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 175%;
    letter-spacing: 0; }
    .t-table-price .row .col:first-child {
      border-left: 1px solid #c0c0c0; }
    .t-table-price .row .col.red {
      color: #ed2b00;
      font-weight: 700; }

.mb-2 {
  margin-bottom: 2rem; }

.mb-2-5 {
  margin-bottom: 2.5rem; }

@media (max-width: 767px) {
  .p-title-04 {
    padding-top: 3.5rem;
    padding-bottom: 2.5rem;
    font-size: 3rem;
    background-size: 4rem;
    background-position: center top .8rem;
    clip-path: polygon(0% 0%, 100% 0%, 100% calc(100% - 2rem), 50% 100%, 0% calc(100% - 2rem)); }
    .p-title-04::before {
      left: 2rem;
      top: 2.7rem;
      width: 14rem; }
    .p-title-04::after {
      width: 14rem;
      top: 2.7rem;
      right: 2rem; }
  .p-title-05 p {
    font-size: 1.4rem;
    text-align: center; }

  .p-text-02 p {
    font-size: 1.4rem; }

  .c-link-01 a {
    font-size: 1.4rem; }

  .t-table-01 {
    padding: 0 .5rem; }
    .t-table-01 .cols .rows {
      font-size: 1.2rem;
      line-height: 185%; }
      .t-table-01 .cols .rows:first-child {
        font-size: 1.4rem; }
      .t-table-01 .cols .rows.icon {
        padding-top: 5rem;
        background-size: 3.5rem; }
        .t-table-01 .cols .rows.icon br {
          display: none; }
        .t-table-01 .cols .rows.icon p {
          font-size: 1.2rem; }
  .t-table-02 .row .col:first-child {
    width: 6rem; }
  .t-table-02 .row .col:last-child {
    width: calc(100% - 6rem); }
  .t-table-03 {
    padding: 1rem 0; }
    .t-table-03 tr td {
      font-size: 1.4rem; }
      .t-table-03 tr td:first-child {
        width: 12rem; }
      .t-table-03 tr td:last-child {
        width: calc(100% - 12rem); }
  .t-table-price .row .col {
    font-size: 1.4rem; }

  .b-button-02 a {
    max-width: 30rem;
    padding: 0 3rem 0 1rem; }
  .b-button-02.vz-02 a {
    font-size: 1.4rem; } }
.container-wrap {
  max-width: 67.5rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto; }
  .container-wrap .banner {
    margin-bottom: 1rem; }
    .container-wrap .banner img {
      width: 100%; }
.container .main {
  width: calc(100% - 25rem); }
.container .sidebar {
  width: 25rem; }

.c-search-block {
  background: #f0f3f6;
  padding: .8rem 1.6rem 3.5rem;
  margin-bottom: 1rem; }
.c-search-list {
  gap: 1rem;
  margin-bottom: 1rem; }
  .c-search-list li {
    width: calc((100% - 2.001rem) / 3);
    position: relative; }
    .c-search-list li::before {
      position: absolute;
      content: url(https://api.iconify.design/material-symbols/arrow-forward-ios.svg?color=%230a315f);
      height: 2rem;
      width: 2rem;
      right: .4rem;
      top: 50%;
      transform: translateY(-50%); }
    .c-search-list li .select {
      width: 100%;
      padding: 0.75rem;
      border: none;
      height: 40px;
      appearance: none;
      background-color: #ffffff;
      /* background-image: linear-gradient(45deg, transparent 50%, #70a9db 50%), linear-gradient(135deg, #70a9db 50%, transparent 50%); */
      background-position: calc(100% - 20px) 1em, calc(100% - 15px) 1em;
      background-size: 5px 5px, 5px 5px, 2.5em 2.5em;
      background-repeat: no-repeat; }
.c-search-feature {
  gap: .5rem;
  grid-template-columns: repeat(3, 1fr);
  max-width: 52rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem; }
  .c-search-feature li label {
    display: flex;
    align-items: center;
    height: 2.5em;
    padding-left: 1.5rem;
    background: #ffffff;
    border-radius: 2rem;
    border: 2px solid #2B66AC; }
  .c-search-feature li .item {
    display: block;
    margin-left: .5rem;
    font-size: 1.4rem;
    color: #2B66AC; }
  .c-search-feature li input {
    position: relative;
    width: 1.3rem; }
    .c-search-feature li input::before {
      top: 0px;
      left: -1px;
      width: 1.4rem;
      height: 1.4rem;
      position: absolute;
      content: "";
      background: #ECEFF4; }
    .c-search-feature li input::after {
      position: absolute;
      content: "";
      left: -0.3rem;
      top: -1px;
      width: 1.4rem;
      height: 1.4rem;
      background: #2B66AC;
      background-image: url(assets/img/checkbox.png);
      background-size: 100% 100%;
      border: solid 2px #2B66AC;
      opacity: 0; }
    .c-search-feature li input:checked::after {
      opacity: 1; }

.ranking-tab-list {
  gap: .5rem;
  grid-template-columns: repeat(2, 1fr); }
  .ranking-tab-list li .btn {
    width: 100%;
    height: 6rem;
    line-height: 150%;
    border-radius: .8rem .8rem 0px 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.2rem;
    font-weight: 700;
    opacity: 0.3;
    color: #fff;
    text-decoration: none;
    background: #1368b0;
    cursor: pointer;
    transition: all 0.35s; }
    .ranking-tab-list li .btn .item {
      position: relative;
      padding-left: 3.6rem; }
      .ranking-tab-list li .btn .item::before {
        content: "";
        position: absolute;
        width: 2.7rem;
        height: 3rem;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
        background: url(assets/img/vector.png) no-repeat center;
        background-size: contain; }
    .ranking-tab-list li .btn#h-tab-2 {
      background: #555555; }
      .ranking-tab-list li .btn#h-tab-2 .item::before {
        background-image: url(assets/img/group-1.png); }
    .ranking-tab-list li .btn.active, .ranking-tab-list li .btn:hover {
      opacity: 1; }

.ranking-compare {
  width: max-content;
  background: #fff;
  font-size: 1.4rem;
  counter-reset: section;
  border-spacing: 0;
  border-collapse: collapse; }
  .ranking-compare__wrapper {
    margin: 8px auto 0; }
  .ranking-compare__layout {
    overflow-x: auto;
    overflow-y: visible;
    width: 100%; }
  .ranking-compare td {
    text-align: center;
    width: 17rem;
    border: #1368b0 solid 1px;
    padding: .3rem .6rem; }
    .ranking-compare td:first-child {
      background: #1368b0;
      width: 10rem;
      color: #FFFFFF; }
    .ranking-compare td .logo {
      position: relative;
      z-index: 0;
      padding: .5rem 0;
      padding-left: 4rem; }
      .ranking-compare td .logo::before {
        content: "";
        position: absolute;
        width: 2.9rem;
        height: 1.7rem;
        top: 3.3rem;
        left: .2rem;
        z-index: -1;
        background: url(assets/img/ranking-icon01.png) no-repeat center;
        background-size: contain; }
      .ranking-compare td .logo::after {
        counter-increment: section;
        content: counter(section);
        position: absolute;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #FFFFFF;
        width: 3.2rem;
        height: 3.2rem;
        top: .6rem;
        left: 0;
        -webkit-mask: url(assets/img/ranking-icon02.png) center/100% no-repeat;
        mask: url(assets/img/ranking-icon02.png) center/100% no-repeat;
        background: #eacc59; }
      .ranking-compare td .logo img {
        width: 11.2rem;
        height: 4rem;
        object-fit: contain; }
      .ranking-compare td .logo.vz-02::after {
        background: #d6d6d6; }
      .ranking-compare td .logo.vz-03::after {
        background: #ba966a; }
      .ranking-compare td .logo.vz-04::after {
        background: #ea5959; }
      .ranking-compare td .logo.vz-05::after {
        background: #ffa1a1; }
      .ranking-compare td .logo.vz-06::after {
        background: #ff9361; }
    .ranking-compare td .link a {
      color: #00e;
      font-size: 1.6rem;
      text-decoration: underline; }
    .ranking-compare td .star {
      font-size: 1.8rem;
      color: gold;
      position: relative;
      padding-left: 2.5rem;
      display: inline-block; }
      .ranking-compare td .star::before {
        content: "";
        position: absolute;
        width: 2.4rem;
        height: 2.4rem;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
        background: url(assets/img/star-on.png) no-repeat center;
        background-size: contain; }
    .ranking-compare td.icon {
      position: relative;
      padding-top: 4rem; }
      .ranking-compare td.icon::before {
        content: "";
        position: absolute;
        width: 3.2rem;
        height: 3.2rem;
        top: .8rem;
        left: 50%;
        transform: translateX(-50%);
        background: url(assets/img/compare_4.png) no-repeat center;
        background-size: contain; }
      .ranking-compare td.icon.vz-02::before {
        background-image: url(assets/img/compare_3.png); }
      .ranking-compare td.icon.vz-03::before {
        background-image: url(assets/img/compare_2.png); }
    .ranking-compare td .red {
      color: #ed2b00; }
    .ranking-compare td .line {
      background: linear-gradient(transparent 60%, gold 60%); }
  .ranking-compare tr:first-child td {
    vertical-align: top; }

#m-tab-2 .ranking-compare .row .col:first-child {
  background: #555555;
  border-bottom-color: #555; }

.m-tab-cont {
  display: none; }
  .m-tab-cont.active {
    display: block; }

.c-ranking-container {
  counter-reset: section; }
.c-ranking-block {
  border: #1368b0 solid 2px;
  border-radius: 1rem 1rem 0 0;
  overflow: hidden;
  margin-bottom: 2.5rem; }
.c-ranking-title-01 {
  position: relative;
  padding: .5rem .5rem .3rem 8rem;
  margin-bottom: 1.5rem;
  background: #1368b0 url(assets/img/ranking-icon03.png) no-repeat top 0.9rem left 1.3rem;
  background-size: 5rem; }
  .c-ranking-title-01::before {
    content: "";
    position: absolute;
    width: 4.5rem;
    height: 2.7rem;
    top: 5rem;
    left: 1.6rem;
    background: url(assets/img/ranking-icon01.png) no-repeat center;
    background-size: contain; }
  .c-ranking-title-01::after {
    content: "";
    position: absolute;
    width: 5rem;
    height: 5rem;
    top: 1rem;
    left: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    counter-increment: section;
    content: counter(section);
    background: #eacc59;
    -webkit-mask: url(assets/img/ranking-icon02.png) center/100% no-repeat;
    mask: url(assets/img/ranking-icon02.png) center/100% no-repeat; }
  .c-ranking-title-01.v-02 {
    padding-left: 0;
    background-image: initial; }
    .c-ranking-title-01.v-02::before, .c-ranking-title-01.v-02::after {
      content: none; }
  .c-ranking-title-01.vz-02::after {
    background: #d6d6d6; }
  .c-ranking-title-01.vz-03::after {
    background: #ba966a; }
  .c-ranking-title-01.vz-04::after {
    background: #ea5959; }
  .c-ranking-title-01.vz-05::after {
    background: #ffa1a1; }
  .c-ranking-title-01.vz-06::after {
    background: #ff9361; }
  .c-ranking-title-01 .title {
    color: #FFFFFF;
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 0;
    display: inline-block;
    margin-bottom: 1rem;
    border-bottom: #FFFFFF solid 2px; }
  .c-ranking-title-01 p {
    color: #FFFFFF;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 0; }
    .c-ranking-title-01 p span {
      background: #FFFFFF;
      padding: 0 .6rem;
      border-radius: .3rem;
      margin-right: .5rem;
      color: #1368b0;
      display: inline-block; }
.c-ranking-title-02 {
  color: #111;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0;
  padding-left: 2.5rem;
  background: url(assets/img/data-table_icon_1.png) no-repeat center left;
  background-size: 2rem;
  margin-bottom: .8rem; }
.c-ranking-field {
  padding: 0 .8rem; }
  .c-ranking-field-wrap {
    margin-bottom: 1rem; }
  .c-ranking-field-box {
    padding: 3rem 1rem;
    background: #fff9e7;
    margin-bottom: 1rem; }
    .c-ranking-field-box:last-child {
      margin-bottom: 0; }

.p-ranking-price {
  padding: 0 1.2rem;
  margin-bottom: 1rem; }
  .p-ranking-price-img {
    width: 29.5rem;
    text-align: center;
    margin-left: auto;
    margin-right: auto; }
    .p-ranking-price-img img {
      height: 22rem;
      display: inline-block;
      object-fit: contain; }
  .p-ranking-price-cont {
    padding: 0 1.2rem;
    width: calc(100% - 29.5rem); }
  .p-ranking-price.vz-02 .p-ranking-price-cont {
    width: 100%; }

.b-voice {
  margin-bottom: 2rem;
  padding: 0 1rem; }
  .b-voice-title {
    color: #333;
    font-size: 2rem;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 0;
    padding: .4rem 0;
    border-bottom: #70a9db solid 2px;
    margin-bottom: 2rem; }
    .b-voice-title.vz-02 {
      padding: .4rem 3rem;
      background: url(assets/img/review_head.png) no-repeat center left;
      background-size: 2.6rem; }
  .b-voice-slide {
    counter-reset: section; }
    .b-voice-slide .box {
      border: solid 1px #aaa;
      border-radius: 1.5rem;
      padding: .3rem .8rem 1rem;
      margin: 0 4rem; }
      .b-voice-slide .box .head {
        border-bottom: solid 1px #aaa;
        padding-bottom: .6rem;
        margin-bottom: .3rem; }
        .b-voice-slide .box .head-item:first-child {
          padding-left: 1rem;
          padding-right: 1rem; }
          .b-voice-slide .box .head-item:first-child img {
            width: 6rem; }
        .b-voice-slide .box .head-item p {
          color: #333;
          font-size: 1.6rem;
          font-weight: 400;
          line-height: 150%;
          letter-spacing: 0;
          margin-bottom: .3rem; }
        .b-voice-slide .box .head-item .star {
          gap: 0.2rem; }
          .b-voice-slide .box .head-item .star-item {
            width: 2.4rem;
            height: 2.4rem;
            background: url(assets/img/star-on.png) no-repeat center;
            background-size: contain; }
            .b-voice-slide .box .head-item .star-item.vz-02 {
              background-image: url(assets/img/star-half.png); }
            .b-voice-slide .box .head-item .star-item.vz-03 {
              background-image: url(assets/img/star-off.png); }
      .b-voice-slide .box .cont p {
        color: #333;
        font-size: 1.6rem;
        font-weight: 400;
        line-height: 150%;
        letter-spacing: 0; }
    .b-voice-slide .slick-arrow {
      position: absolute;
      z-index: 5;
      top: 50%;
      transform: translateY(-50%);
      width: 3rem;
      height: 3rem;
      border-radius: 100%;
      background: #1368b0;
      border: 0;
      font-size: 0;
      cursor: pointer; }
      .b-voice-slide .slick-arrow::before {
        content: "";
        position: absolute;
        width: 0.7rem;
        height: 1.2rem;
        top: 50%;
        left: 54%;
        transform: translate(-50%, -50%);
        -webkit-mask: url(assets/img/right-arrow.png) center/100% no-repeat;
        mask: url(assets/img/right-arrow.png) center/100% no-repeat;
        background: #FFFFFF; }
      .b-voice-slide .slick-arrow.slick-prev {
        left: 0; }
        .b-voice-slide .slick-arrow.slick-prev::before {
          transform: translate(-50%, -50%) scaleX(-1); }
      .b-voice-slide .slick-arrow.slick-next {
        right: 0; }
  .b-voice .cart {
    position: relative;
    padding: 3rem 4rem 1rem;
    margin-bottom: 0.5rem; }
    .b-voice .cart-box-item:first-child {
      width: 14rem; }
    .b-voice .cart-box-item:last-child {
      padding-left: 3rem;
      padding-right: 5rem;
      width: calc(100% - 14rem); }
    .b-voice .cart-box .number {
      position: absolute;
      width: 5rem;
      top: 0;
      left: 0;
      height: 3.4rem;
      background: #2c2f33;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      clip-path: polygon(0 0, 100% 0, 85% 50%, 100% 100%, 0 100%); }
    .b-voice .cart-box .title {
      background: #d0e1ef;
      padding: .5rem;
      display: inline-block;
      margin-bottom: 2rem; }
      .b-voice .cart-box .title span {
        color: #111;
        font-size: 2rem;
        font-weight: 700;
        line-height: 150%;
        letter-spacing: 0;
        background: linear-gradient(transparent 60%, gold 60%); }

.b-location {
  border-radius: 1rem;
  border: #5DA396 solid 2px;
  overflow: hidden;
  width: calc(100% - 3rem);
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1rem; }
  .b-location-head {
    color: #FFFFFF;
    font-size: 2rem;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 0;
    background: #5DA396;
    padding: .3rem; }
    .b-location-head span {
      padding-left: 2.5rem;
      background: url(assets/img/clinic_head.png) no-repeat center left;
      background-size: 2rem; }
  .b-location-main {
    padding: 2rem; }
    .b-location-main p {
      color: #555;
      font-size: 1.6rem;
      font-weight: 400;
      line-height: 170%;
      letter-spacing: 0; }
    .b-location-main ul {
      margin-left: 2rem;
      gap: 0 1rem; }
      .b-location-main ul li a {
        color: #45a2f7;
        font-size: 1.6rem;
        font-weight: 400;
        line-height: 170%;
        letter-spacing: 0;
        text-decoration: underline; }
        .b-location-main ul li a:hover {
          text-decoration: none; }

.column-list {
  gap: .5rem;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 1rem; }
  .column-list li a {
    border: solid 1px #999;
    display: flex;
    padding: .5rem;
    height: 100%; }
    .column-list li a .img {
      width: 11rem; }
    .column-list li a .cont {
      width: calc(100% - 11rem);
      padding-left: .5rem;
      color: #00e;
      font-size: 1.6rem;
      font-weight: 400;
      line-height: 150%;
      letter-spacing: 0; }

.pagination {
  margin-bottom: 4rem; }
  .pagination li {
    margin: 0 .5rem; }
    .pagination li a {
      border: #CCC solid 1px;
      font-size: 1.6rem;
      display: block;
      min-width: 3rem;
      padding: .1rem;
      text-align: center; }
    .pagination li.active a {
      background: #1368b0;
      color: #FFFFFF; }

@media (max-width: 960px) {
  .l-layout > .grid-1024 {
    padding-left: 0;
    padding-right: 0; }

  .container-wrap {
    max-width: 100%;
    padding: 0 .5rem; }
  .container .sidebar {
    display: none; }
  .container .main {
    width: 100%; }

  .c-search {
    padding: 0 1rem; } }
@media (max-width: 767px) {
  .c-search-feature {
    grid-template-columns: repeat(2, 1fr); }
  .c-search-block {
    padding: .8rem 0.6rem 3.5rem; }

  .c-ranking-title-01 {
    padding: .5rem .5rem .3rem 7rem; }

  .p-ranking-price-img {
    width: 100%;
    margin-bottom: 1rem; }
  .p-ranking-price-cont {
    width: 100%;
    padding: 0; }

  .column-list {
    grid-template-columns: 1fr; }

  .b-voice .cart {
    padding: 3rem 2rem 1rem; }
    .b-voice .cart-box-item:first-child {
      width: 6.9rem; }
    .b-voice .cart-box-item:last-child {
      padding-left: 2rem;
      padding-right: 0;
      width: calc(100% - 6.9rem); }

  .b-voice-slide .box {
    margin: 0 0.5rem;
    padding: .3rem 1.8rem 1rem; }
    .b-voice-slide .box .cont p {
      font-size: 1.4rem; }
  .b-voice-slide .slick-arrow.slick-prev {
    left: -1.2rem; }
  .b-voice-slide .slick-arrow.slick-next {
    right: -1.2rem; }

  .b-location {
    width: 100%; }
    .b-location-main p, .b-location-main ul li a {
      font-size: 1.4rem; } }
.single-block {
  margin-top: 1rem;
  padding: 2rem 1rem .5rem;
  background: #fff9e7; }

.search-result_head_option {
  width: 100%;
  padding: .5rem .5rem;
  background: #ddd;
  border-radius: .5rem;
  font-size: 1.4rem; }
  .search-result_head_option_list {
    width: 100%;
    padding: .5rem 1rem;
    background: #fff;
    border-radius: .5rem; }
.search-result_head_count span {
  color: red;
  font-size: 2rem;
  font-weight: bold; }

.container-single {
  max-width: calc(100% - 2rem); }
  .container-single .p-title-06 {
    margin-bottom: 1rem; }

.single-main h2 {
  background: #70a9db;
  padding: 1rem 2rem;
  text-align: center;
  margin-bottom: 2rem;
  color: #fff;
  font-size: 3.6rem;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: 0; }
.single-main h3 {
  color: #111;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 175%;
  letter-spacing: 0;
  text-align: center;
  border-bottom: dotted 3px #70a9db;
  margin-bottom: 2rem; }
.single-main h4 {
  color: #fff;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 175%;
  letter-spacing: 0;
  background: #70a9db;
  padding: 1rem 2rem;
  margin-bottom: 1.5rem; }
.single-main p {
  color: #111;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 175%;
  letter-spacing: 0;
  margin-bottom: 3rem; }
  .single-main p .line {
    background: linear-gradient(transparent 60%, gold 60%); }
  .single-main p .b {
    font-weight: 700; }
  .single-main p .red {
    color: #ed2b00; }
.single-main ol {
  list-style: decimal;
  padding-left: 3rem; }
  .single-main ol li {
    color: #111;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 175%;
    letter-spacing: 0; }
.single-main ul {
  list-style-type: disc;
  padding-left: 3rem; }
  .single-main ul li {
    color: #111;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 175%;
    letter-spacing: 0; }
.single-main img {
  display: block;
  width: 100%;
  max-width: 60rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.5rem; }

@media (max-width: 767px) {
  .single-main {
    margin-bottom: 5rem; }
    .single-main h2 {
      font-size: 2.5rem;
      padding: 1rem; }
    .single-main h3 {
      font-size: 2rem; }
    .single-main p {
      font-size: 1.4rem;
      margin-bottom: 1.2rem; }
    .single-main ul li, .single-main ol li {
      font-size: 1.4rem; } }

/*# sourceMappingURL=style.css.map */
