@charset "UTF-8";
@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}

@media screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}

html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -webkit-tap-highlight-color: transparent;
  /* 3*/
}

body {
  margin: 0;
  position: relative;
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}
@media screen and (min-width: 768px) {
  body {
    padding-top: 60px;
  }
}
@media screen and (max-width: 767px) {
  body {
    padding-top: 60px;
  }
  body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    z-index: 99;
    pointer-events: none;
  }
  body.menu-open::before {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}

a:focus,
a:active,
img:focus,
button:focus {
  outline: none;
}

img {
  width: 100%;
  display: block;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

h1,
h2,
h3,
h4 {
  margin-block-start: 0em;
  margin-block-end: 0em;
}

p {
  margin-block-start: 0em;
  margin-block-end: 0em;
}

a {
  background-color: transparent;
  color: inherit;
  outline: none;
}

.breadcrumbs {
  color: #787878;
  padding-top: 5px;
  padding-bottom: 5px;
  max-width: 1800px;
  display: block;
  width: 100%;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .breadcrumbs {
    padding-left: 10px;
    font-size: clamp(14px, 16 / 1920 * 100vw, 18px);
  }
}
@media screen and (max-width: 767px) {
  .breadcrumbs {
    font-size: clamp(11px, 13 / 750 * 100vw, 15px);
    padding: 2% 1% 2% 2%;
  }
}
.breadcrumbs a {
  text-decoration: none;
}

@media screen and (max-width: 767px) {
  body.menu-open header::before {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}
.swiper-pagination-bullet {
  /* border-radius: unset; */
  /* width: 30px; */
  /* height: 5px; */
  /* background-color: #ccc; */
  /* opacity: unset; */
  /* outline: 1px solid var(--vk-color-background-white-translucent); */
  /* pointer-events: auto; */
}

header {
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  border-bottom: 0.5px solid #3556c3;
}
@media screen and (min-width: 768px) {
  header {
    height: 60px;
  }
}
@media screen and (max-width: 767px) {
  header {
    height: 60px;
  }
  header::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 60px;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    z-index: 100;
    pointer-events: none;
  }
}
header .header-inner {
  display: flex;
  height: 100%;
  justify-content: space-between;
  align-items: center;
}
@media screen and (min-width: 768px) {
  header .header-inner {
    padding: 0px 18px;
    width: 94%;
    margin: auto;
  }
}
@media screen and (max-width: 767px) {
  header .header-inner {
    width: 95%;
    margin: auto;
  }
}
header .header-left {
  display: flex;
  align-items: center;
  position: relative;
}
@media screen and (min-width: 768px) {
  header .header-left {
    width: 100px;
  }
}
@media screen and (max-width: 767px) {
  header .header-left {
    width: 26%;
  }
}
header .header-right {
  display: flex;
  justify-content: right;
  align-items: center;
}
@media screen and (min-width: 768px) {
  header .header-right {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  header .header-right {
    padding-right: 5px;
  }
}
header .header-right .header-hamburger {
  width: 24px;
  height: 100%;
  background-color: transparent;
  border-color: transparent;
  z-index: 9999;
}
header .header-right .header-hamburger span {
  width: 100%;
  height: 2px;
  background-color: #3556c3;
  position: relative;
  transition: ease 0.4s;
  display: block;
}
header .header-right .header-hamburger span:nth-child(1) {
  top: 0;
}
header .header-right .header-hamburger span:nth-child(2) {
  margin: 8px 0;
}
header .header-right .header-hamburger span:nth-child(3) {
  top: 0;
}
header .header-right .header-hamburger.active span {
  background-color: white;
  height: 3px;
  border-radius: 5px;
}
header .header-right .header-hamburger.active span:nth-child(1) {
  top: 5px;
  transform: rotate(45deg);
}
header .header-right .header-hamburger.active span:nth-child(2) {
  opacity: 0;
}
header .header-right .header-hamburger.active span:nth-child(3) {
  top: -16.5px;
  transform: rotate(-45deg);
}
header .header-right {
  /* ヘッダーのナビ部分 */
}
@media screen and (min-width: 768px) {
  header .header-right .header-nav {
    order: 1;
  }
}
@media screen and (max-width: 767px) {
  header .header-right .header-nav {
    background-color: #303850;
    color: white;
    transition: ease 0.4s;
    padding: 20px;
    position: absolute;
    right: -100%;
    top: 0;
    z-index: 101;
    width: 80%;
    height: 100vh;
    z-index: 100;
  }
  header .header-right .header-nav.active {
    right: 0%;
    z-index: 102;
  }
}
@media screen and (min-width: 768px) {
  header .header-right .header-nav .header-nav-items {
    color: #2b87dd;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
  }
}
@media screen and (max-width: 767px) {
  header .header-right .header-nav .header-nav-items {
    padding: 18% 0 0 15%;
    display: flex;
    flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  header .header-right .header-nav .header-nav-items .nav-parent-link {
    margin-left: -9%;
  }
}
@media screen and (min-width: 768px) {
  header .header-right .header-nav .header-nav-items li {
    margin: 5px 15px;
    position: relative;
  }
}
@media screen and (max-width: 767px) {
  header .header-right .header-nav .header-nav-items li {
    margin: 10px 0px;
  }
}
@media screen and (max-width: 767px) {
  header .header-right .header-nav .header-nav-items li.has-submenu {
    order: -1;
  }
}
header .header-right .header-nav .header-nav-items li a {
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  header .header-right .header-nav .header-nav-items li.has-submenu {
    position: relative;
  }
  header .header-right .header-nav .header-nav-items li.has-submenu:hover .submenu, header .header-right .header-nav .header-nav-items li.has-submenu.active .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}
@media screen and (max-width: 767px) {
  header .header-right .header-nav .header-nav-items li.has-submenu.active .submenu {
    opacity: 1;
    visibility: visible;
    max-height: 500px;
    padding: 20px 0 20px 0px;
  }
}
header .header-right .header-nav .header-nav-items li.has-submenu #nav-plus-icon {
  transition: opacity 0.3s ease, transform 0.3s ease;
  display: inline-block;
  opacity: 1;
}
header .header-right .header-nav .header-nav-items li.has-submenu .submenu {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 180%;
  left: 0;
  background-color: #edf4ff;
  min-width: 220px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 10px 0 10px 10px;
  margin-top: 5px;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  transform: translateY(-10px);
}
@media screen and (max-width: 767px) {
  header .header-right .header-nav .header-nav-items li.has-submenu .submenu {
    position: static;
    box-shadow: none;
    background-color: transparent;
    padding: 0;
    margin-top: 0;
    max-height: 0;
    overflow: hidden;
    transform: translateY(0);
    transition: opacity 0.3s ease, visibility 0.3s ease, max-height 0.3s ease, padding 0.3s ease, margin-top 0.3s ease;
  }
}
header .header-right .header-nav .header-nav-items li.has-submenu .submenu li {
  margin: 0;
  border-left: 1px solid #2b87dd;
}
@media screen and (max-width: 767px) {
  header .header-right .header-nav .header-nav-items li.has-submenu .submenu li {
    border-left: 1px solid white;
  }
}
header .header-right .header-nav .header-nav-items li.has-submenu .submenu li a {
  display: flex;
  align-items: center;
  padding: 8px 0 8px 20px;
  color: #2b87dd;
  transition: background-color 0.3s;
}
@media screen and (min-width: 768px) {
  header .header-right .header-nav .header-nav-items li.has-submenu .submenu li a:hover {
    background-color: #edf4ff;
  }
}
@media screen and (max-width: 767px) {
  header .header-right .header-nav .header-nav-items li.has-submenu .submenu li a {
    padding: 8px 15px;
    color: white;
  }
}
header .header-right .header-nav .header-nav-items li.has-submenu .submenu li a .submenu-text {
  flex: 1;
}

.nav-banner {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  width: 90%;
  bottom: 20%;
}

.t-center {
  text-align: center;
}

footer {
  background-color: #303850;
  color: white;
}
@media screen and (min-width: 768px) {
  footer {
    padding: 20px 0px 40px;
  }
}
@media screen and (max-width: 767px) {
  footer {
    padding: 20px 0px 60px;
  }
}
footer ul {
  align-items: center;
}
@media screen and (min-width: 768px) {
  footer ul {
    display: flex;
    justify-content: center;
    width: 90%;
    margin: auto;
    padding: 20px;
    min-width: 900px;
  }
}
@media screen and (max-width: 767px) {
  footer ul {
    padding: 4% 10%;
  }
}
@media screen and (min-width: 768px) {
  footer ul li {
    margin: 10px 15px;
    font-size: clamp(15px, 17 / 1920 * 100vw, 19px);
  }
}
@media screen and (max-width: 767px) {
  footer ul li {
    margin: 18px 0;
    font-size: clamp(14px, 16 / 750 * 100vw, 18px);
  }
}
footer ul li a {
  text-decoration: none;
}
footer .copyright {
  text-align: center;
  padding: 10px;
}
@media screen and (min-width: 768px) {
  footer .copyright {
    font-size: clamp(15px, 17 / 1920 * 100vw, 19px);
  }
}
@media screen and (max-width: 767px) {
  footer .copyright {
    margin-top: 40px;
    font-size: clamp(14px, 16 / 750 * 100vw, 18px);
  }
}

.line-btn-fixed {
  display: inline-block;
  position: fixed;
  z-index: 50;
}
@media screen and (min-width: 768px) {
  .line-btn-fixed {
    right: 0;
    top: 50%;
    width: 3%;
    min-width: 40px;
  }
}
@media screen and (max-width: 767px) {
  .line-btn-fixed {
    bottom: -7px;
    left: 0;
    width: 100%;
  }
}

.page-title {
  color: white;
  text-align: center;
  background: linear-gradient(to right, #2b87dd 0%, #8bceff 100%);
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .page-title {
    padding: 46px 0;
    font-size: clamp(24px, 26 / 1920 * 100vw, 28px);
  }
}
@media screen and (max-width: 767px) {
  .page-title {
    padding: 6% 0;
    font-size: clamp(20px, 22 / 750 * 100vw, 24px);
  }
}
.page-title .shadow-text {
  text-shadow: 0px 0px 8px rgba(255, 255, 255, 0.6);
}

.common-container {
  width: 92%;
  margin: auto;
  max-width: 1300px;
}
@media screen and (min-width: 768px) {
  .common-container {
    min-width: 900px;
  }
}

@media screen and (min-width: 768px) {
  .menu-items {
    display: flex;
    justify-content: space-between;
    padding: 20px 30px;
  }
}
@media screen and (max-width: 767px) {
  .menu-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 10px;
  }
}
.menu-items .menu-item {
  width: 49%;
}
@media screen and (max-width: 767px) {
  .menu-items .menu-item {
    width: 98%;
    margin: auto;
  }
}

.news-list {
  margin: auto;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .news-list {
    width: 96%;
  }
}
@media screen and (max-width: 767px) {
  .news-list {
    width: 92%;
    margin-top: -20px;
  }
}
.news-list .news-item {
  width: 100%;
  padding: 40px 0;
}
.news-list .news-item:nth-child(n+2) {
  border-top: 1px solid #3556c3;
}
.news-list .news-item .news-link {
  text-decoration: none;
}
.news-list .news-item .news-title {
  font-weight: 400;
  word-break: break-all;
}
@media screen and (min-width: 768px) {
  .news-list .news-item .news-title {
    font-size: clamp(16px, 18 / 1920 * 100vw, 20px);
    line-height: clamp(27px, 28 / 1920 * 100vw, 29px);
  }
}
@media screen and (max-width: 767px) {
  .news-list .news-item .news-title {
    font-size: clamp(15px, 17 / 750 * 100vw, 19px);
    line-height: clamp(26px, 27 / 750 * 100vw, 28px);
  }
}
.news-list .news-item .news-date {
  color: #3556c3;
  font-weight: 600;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .news-list .news-item .news-date {
    font-size: clamp(14px, 16 / 1920 * 100vw, 18px);
    margin-bottom: 1.5%;
  }
}
@media screen and (max-width: 767px) {
  .news-list .news-item .news-date {
    font-size: clamp(13px, 15 / 750 * 100vw, 17px);
    margin-bottom: 4%;
  }
}

.news-btn {
  margin: 20px auto;
}
@media screen and (min-width: 768px) {
  .news-btn {
    width: 80%;
  }
}
@media screen and (max-width: 767px) {
  .news-btn {
    width: 76%;
  }
}

.title-sub {
  color: #3556c3;
  font-weight: 600;
  font-size: 18px;
  margin: 30px 0;
}

.faq-inner {
  max-width: 1400px;
  width: 90%;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .faq-inner {
    width: 100%;
  }
}

.faq-content {
  margin: auto;
  background-color: white;
  border-radius: 10px;
}
@media screen and (min-width: 768px) {
  .faq-content {
    padding: 18px 15px;
    width: 60%;
    margin-bottom: 20px;
    min-width: 600px;
  }
}
@media screen and (max-width: 767px) {
  .faq-content {
    padding: 6% 4%;
    margin-bottom: 20px;
  }
}
.faq-content .q-item {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .faq-content .q-item {
    align-items: center;
  }
}
@media screen and (max-width: 767px) {
  .faq-content .q-item {
    align-items: self-start;
  }
}
.faq-content .q-item .q-icon {
  display: flex;
}
@media screen and (min-width: 768px) {
  .faq-content .q-item .q-icon {
    width: 4%;
    padding: 0.5%;
  }
}
@media screen and (max-width: 767px) {
  .faq-content .q-item .q-icon {
    padding: 2% 0;
    width: 5%;
  }
}
.faq-content .q-item .q-title {
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .faq-content .q-item .q-title {
    width: 89%;
    font-size: clamp(16px, 18 / 1920 * 100vw, 20px);
    line-height: clamp(27px, 28 / 1920 * 100vw, 29px);
  }
}
@media screen and (max-width: 767px) {
  .faq-content .q-item .q-title {
    width: 80%;
    font-size: clamp(15px, 17 / 750 * 100vw, 19px);
    line-height: clamp(26px, 27 / 750 * 100vw, 28px);
  }
}
.faq-content .q-item .q-plus-icon {
  cursor: pointer;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .faq-content .q-item .q-plus-icon {
    width: 22px;
  }
}
@media screen and (max-width: 767px) {
  .faq-content .q-item .q-plus-icon {
    margin: auto 0;
    width: 5.5%;
  }
}
.faq-content.is-open .a-item {
  max-height: 300px;
  opacity: 1;
  margin-top: 25px;
  padding: 25px 0 0;
  transition: max-height 0.4s ease-in, opacity 0.3s ease-in, margin-top 0.3s ease-in, padding 0.3s ease-in;
}
.faq-content .a-item {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  margin-top: 0;
  padding: 0;
  transition: max-height 0.4s ease-out, opacity 0.3s ease-out 0.05s, margin-top 0.3s ease-out, padding 0.3s ease-out;
  border-top: 1px solid #303850;
}
.faq-content .a-item .a-icon {
  display: flex;
  align-items: flex-start;
}
@media screen and (min-width: 768px) {
  .faq-content .a-item .a-icon {
    width: 4%;
    padding: 0.7% 0.5%;
  }
}
@media screen and (max-width: 767px) {
  .faq-content .a-item .a-icon {
    width: 5%;
    padding: 2% 0 0;
  }
}
.faq-content .a-item .a-body {
  padding: 0;
  word-break: break-all;
}
@media screen and (min-width: 768px) {
  .faq-content .a-item .a-body {
    width: 94%;
    font-size: clamp(16px, 18 / 1920 * 100vw, 20px);
    line-height: clamp(27px, 28 / 1920 * 100vw, 29px);
  }
}
@media screen and (max-width: 767px) {
  .faq-content .a-item .a-body {
    width: 90%;
    font-size: clamp(15px, 17 / 750 * 100vw, 19px);
    line-height: clamp(26px, 27 / 750 * 100vw, 28px);
  }
}

.top-section-title {
  color: #3556c3;
  text-align: center;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .top-section-title {
    margin: 40px auto 30px;
    font-size: clamp(18px, 20 / 1920 * 100vw, 22px);
    line-height: clamp(28px, 29 / 1920 * 100vw, 30px);
  }
}
@media screen and (max-width: 767px) {
  .top-section-title {
    margin: 20px auto 20px;
    font-size: clamp(17px, 19 / 750 * 100vw, 21px);
    line-height: clamp(27px, 28 / 750 * 100vw, 29px);
  }
}
.top-section-title .subtitle-text {
  display: block;
  color: #2b87dd;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .top-section-title .subtitle-text {
    font-size: clamp(12px, 14 / 1920 * 100vw, 16px);
  }
}
@media screen and (max-width: 767px) {
  .top-section-title .subtitle-text {
    font-size: clamp(11px, 13 / 750 * 100vw, 15px);
  }
}

.hover-btn-anime {
  transition: all 0.3s ease;
}
.hover-btn-anime:hover {
  opacity: 0.7;
}

.pager {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 40px;
  padding: 20px 0;
}
@media screen and (max-width: 767px) {
  .pager {
    gap: 8px;
    margin-top: 10px;
    padding: 15px 0 20px;
  }
}
.pager .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #2b87dd;
  border-radius: 50%;
  text-decoration: none;
  color: #2b87dd;
  transition: all 0.3s ease;
}
@media screen and (min-width: 768px) {
  .pager .page-numbers {
    width: 40px;
    height: 40px;
    font-size: clamp(16px, 18 / 1920 * 100vw, 20px) !important;
  }
}
@media screen and (max-width: 767px) {
  .pager .page-numbers {
    width: 40px;
    height: 40px;
    font-size: clamp(15px, 17 / 750 * 100vw, 19px) !important;
  }
}
.pager .page-numbers:hover:not(.prev, .next) {
  background-color: #2b87dd;
  color: #fff;
}
.pager .page-numbers.current {
  background-color: #2b87dd;
  color: #fff;
  font-weight: 600;
}
.pager .page-numbers.prev, .pager .page-numbers.next {
  border: none;
  border-radius: 0;
  position: relative;
}
.pager .page-numbers.prev::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scaleX(-1);
  width: 16px;
  height: 24px;
  background-color: #2b87dd;
  mask-image: url("../images/common/arrow_right.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-image: url("../images/common/arrow_right.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
}
@media screen and (max-width: 767px) {
  .pager .page-numbers.prev::after {
    width: 15px;
    height: 22px;
  }
}
.pager .page-numbers.next::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 26px;
  background-color: #2b87dd;
  mask-image: url("../images/common/arrow_right.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-image: url("../images/common/arrow_right.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
}
@media screen and (max-width: 767px) {
  .pager .page-numbers.next::after {
    width: 15px;
    height: 22px;
  }
}

.diagnosis-section {
  background-color: #edf4ff;
}
@media screen and (min-width: 768px) {
  .diagnosis-section {
    padding: 30px 0 70px;
  }
}
@media screen and (max-width: 767px) {
  .diagnosis-section {
    padding: 20px 0 50px;
  }
}
@media screen and (min-width: 768px) {
  .diagnosis-section .swiper {
    overflow: visible;
  }
}
@media screen and (min-width: 768px) {
  .diagnosis-section .diagnosis-steps {
    width: 86%;
    margin: auto;
  }
  .diagnosis-section .diagnosis-steps .swiper-slide {
    width: 20%;
  }
  .diagnosis-section .diagnosis-steps .swiper-slide.arrow {
    width: 4%;
    padding-left: 1%;
  }
}
@media screen and (min-width: 768px) {
  .diagnosis-section .diagnosis-steps .swiper-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.diagnosis-section .diagnosis-steps .step-img {
  margin-left: 3.5%;
}
@media screen and (max-width: 767px) {
  .diagnosis-section .swiper-button-prev,
  .diagnosis-section .swiper-button-next {
    width: 40px;
    height: 42px;
  }
}
.diagnosis-section .swiper-button-prev::after,
.diagnosis-section .swiper-button-next::after {
  content: "";
  display: block;
  width: 40px;
  height: 42px;
  background-image: url("../images/common/arrow_right.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 767px) {
  .diagnosis-section .swiper-button-prev {
    left: 16px;
    right: auto;
  }
}
.diagnosis-section .swiper-button-prev::after {
  transform: scaleX(-1);
}
@media screen and (max-width: 767px) {
  .diagnosis-section .swiper-button-next {
    right: 16px;
    left: auto;
  }
}
@media screen and (max-width: 767px) {
  .diagnosis-section .arrow {
    width: 3% !important;
  }
}

.price-table-0 {
  width: 50%;
  margin: 4% auto 6%;
  border-collapse: collapse;
  table-layout: fixed;
}
@media screen and (max-width: 767px) {
  .price-table-0 {
    width: 100%;
  }
}
.price-table-0 th,
.price-table-0 td {
  border: 1px solid #797979;
  vertical-align: middle;
  line-height: 1.4;
  text-align: center;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .price-table-0 th,
  .price-table-0 td {
    padding: 13px 16px;
  }
}
@media screen and (max-width: 767px) {
  .price-table-0 th,
  .price-table-0 td {
    padding: 4% 0;
  }
}
.price-table-0 .table-tile {
  background-color: #edf4ff;
}
@media screen and (min-width: 768px) {
  .price-table-0 .table-tile {
    font-size: clamp(16px, 18 / 1920 * 100vw, 20px);
  }
}
@media screen and (max-width: 767px) {
  .price-table-0 .table-tile {
    font-size: clamp(15px, 17 / 750 * 100vw, 19px);
  }
}
.price-table-0 .price-strong {
  color: #3556c3;
  font-weight: 800;
}
@media screen and (min-width: 768px) {
  .price-table-0 .price-strong {
    font-size: clamp(42px, 44 / 1920 * 100vw, 46px);
  }
}
@media screen and (max-width: 767px) {
  .price-table-0 .price-strong {
    font-size: clamp(47px, 49 / 750 * 100vw, 51px);
  }
}
.price-table-0 .note {
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .price-table-0 .note {
    font-size: clamp(16px, 18 / 1920 * 100vw, 20px);
  }
}
@media screen and (max-width: 767px) {
  .price-table-0 .note {
    font-size: clamp(15px, 17 / 750 * 100vw, 19px);
  }
}

.common-text-marker {
  background: linear-gradient(transparent 60%, #ff6 60%);
}