*, *::before, *::after {
  box-sizing: border-box;
}

ul[class], ol[class] {
  padding: 0;
}

body, h1, h2, h3, h4, p, ul, ol, figure, blockquote, dl, dd {
  margin: 0;
}

body {
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

ul[class], ol[class] {
  list-style: none;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

img, picture {
  max-width: 100%;
  display: block;
}

input, button, textarea, select {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
* {
  margin: 0;
  padding: 0;
}

:root {
  --bg-main: #f8f8f8;
  --bg-fill: var(--color-blue);
  --bg-light: var(--color-light);
  --accent1: #0057b4;
  --accent2: #0095e3;
  --accent3: #e89211;
  --thin: #ecf6fe;
  --gray: #f8f8f8;
  --black: #212121;
  --white: #ffffff;
  --text-color: var(--black);
  --date-color: var(--color-gray);
  --navi-color: var(--color-gray);
  --inner-s: 100rem;
  --inner: 112.6rem;
  --inner-l: 126.6rem;
  --inner-full: 136.6rem;
  --line-height: 1.45;
  --font: "Zen Kaku Gothic New", sans-serif;
  --font-en: "new-hero", sans-serif;
  --bganimation-zindex: 11;
  --wrapper-width: 37.5rem;
  --header-height: 10rem;
}
@media (max-width: 768px) {
  :root {
    --header-height: calc(4rem + 1.5rem + 1.5rem);
  }
}

html {
  font-size: 62.5%;
  scroll-padding-top: var(--header-height);
  scroll-behavior: smooth;
  font-feature-settings: "palt" on;
}
@media screen and (max-width: 1316px) {
  html {
    font-size: 0.7320644217vw;
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 2.6666666667vw;
  }
}

body {
  font-family: var(--font);
  font-size: 1.6rem;
  color: var(--text-color);
  line-height: var(--line-height);
  position: relative;
  background-color: var(--bg-main);
  letter-spacing: 0.06em;
}
@media (max-width: 768px) {
  body {
    font-size: 1.4rem;
  }
}

iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 1266/663;
}

b {
  font-weight: bold;
}

a {
  color: inherit;
  text-decoration: none;
}
textarea {
  resize: none;
}

input[type=submit] {
  transition: 0.3s;
  cursor: pointer;
}
sub {
  vertical-align: baseline;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

h2,
h3,
h4 {
  line-height: 1.45;
}

p {
  font-size: 1.6rem;
  line-height: 3.5rem;
}
p a {
  text-decoration: underline;
  color: var(--accent1);
}
@media (max-width: 768px) {
  p {
    font-size: 1.4rem;
    line-height: 3rem;
  }
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

video {
  max-width: 100%;
}

button {
  background-color: transparent;
  appearance: none;
  border: 0;
  cursor: pointer;
}

section {
  position: relative;
}

@media print, screen and (min-width: 769px) {
  a {
    transition: 0.4s;
  }
}

.l-inner {
  margin-left: auto;
  margin-right: auto;
  max-width: var(--inner);
}
@media screen and (min-width: 1267px) {
  .l-inner {
    max-width: calc(var(--inner) + 4rem);
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media (max-width: 768px) {
  .l-inner {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
.l-inner--s {
  max-width: var(--inner-s);
}
.l-inner--l {
  max-width: var(--inner-l);
}
@media screen and (min-width: 1267px) {
  .l-inner--l {
    max-width: calc(var(--inner-l) + 4rem);
  }
}
.l-inner--full {
  max-width: var(--inner-full);
}

.l-clip {
  overflow-x: clip;
}

.l-space-left {
  padding-left: 7rem;
}

.l-space-right {
  padding-right: 7rem;
}

.c-button-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.c-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  width: 28rem;
  height: 6rem;
  border-radius: 3rem;
  border: 2px solid #fff;
  color: #fff;
  --button-accent-color: var(--accent1);
  background-color: var(--button-accent-color);
  opacity: 1 !important;
  transition: 0.5s;
}
.c-button.is-disabled {
  pointer-events: none;
  opacity: 0.6 !important;
  cursor: not-allowed;
}
.c-button input[type=button],
.c-button input[type=submit] {
  position: absolute;
  cursor: pointer;
  inset: 0;
  opacity: 0;
}
.c-button::after, .c-button::before {
  transition: 0.5s;
}
.c-button--header {
  border-radius: 2.5rem;
  width: 18.5rem;
  height: 5rem;
}
.c-button--s {
  width: 22rem;
  height: 5.5rem;
}
.c-button__text {
  font-weight: bold;
}
.c-button__icon {
  height: fit-content;
}
.c-button--accent2 {
  --button-accent-color: var(--accent2);
}
.c-button--accent3 {
  --button-accent-color: var(--accent3);
}
.c-button--black {
  --button-accent-color: var(--black);
}
.c-button--back {
  --button-accent-color: #a2a4a7;
}
.c-button:hover:not(:disabled) {
  background-color: #fff;
  color: var(--button-accent-color);
  border-color: var(--button-accent-color);
}
.c-button:hover:not(:disabled) svg path {
  fill: var(--accent1);
}

.header {
  background: transparent;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: fixed;
  inset: 0 0 auto;
  height: var(--header-height);
  padding: 2.5rem 5rem;
  z-index: 2222;
  transition: transform 0.3s ease-in-out;
}
@media (max-width: 768px) {
  .header {
    padding: 1.5rem 1.5rem;
  }
}
.header__logo {
  width: 14.1rem;
  margin-right: 4.5rem;
}
@media (max-width: 768px) {
  .header__logo {
    width: 10rem;
  }
}
.header__inner {
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .header__inner {
    justify-content: space-between;
  }
}
.header.is-hide {
  transform: translateY(-120%);
}
.header__nav-list {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 1rem 4rem;
  text-align: right;
}
.header__nav-item > a {
  font-size: 1.6rem;
  font-weight: bold;
  opacity: 1 !important;
}
.header__nav-item:hover > a {
  color: var(--accent1);
}
.header__nav-item:hover > .header__nav-child {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}
.header__nav-item {
  position: relative;
}
.header__nav-child {
  font-size: 1.4rem;
  z-index: 111;
  opacity: 0;
  transform-origin: top left;
  pointer-events: none;
  transform: scale(0);
  transition: all 0.2s;
  position: absolute;
  top: 2rem;
  width: fit-content;
  height: fit-content;
  padding-top: 1rem;
}
.header__nav-child-inner {
  background-color: #fff;
  padding: 1.5rem;
  border-radius: 0.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  white-space: nowrap;
  gap: 0.8rem 2rem;
}
.header__nav-child::before {
  content: "";
  width: 1.2rem;
  height: 1.5rem;
  position: absolute;
  inset: -1rem auto auto 1.3rem;
  border-top: 1.2rem solid transparent;
  border-bottom: 1.2rem solid #fff;
  border-left: 0.6rem solid transparent;
  border-right: 0.6rem solid transparent;
}
.header .is-service .header__nav-child-inner {
  grid-template-columns: 1fr;
}
.header__nav-child-item {
  font-weight: normal !important;
  position: relative;
  text-align: left;
}
.header__nav-child-item::before {
  content: "";
  width: 0.4rem;
  height: 0.4rem;
  background-color: var(--accent1);
  display: inline-block;
  margin-right: 0.5rem;
  position: relative;
  top: -0.2rem;
}
.header__buttons {
  margin-left: auto;
  display: flex;
  align-items: center;
  z-index: 10001;
}
.header__button--ghost {
  margin-right: 2.5rem;
  font-weight: bold;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #a2a4a7;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.header__button--ghost:hover {
  color: var(--accent1);
}
.header__hamburger {
  z-index: 10002;
  --hamburger-size: 5rem;
  width: var(--hamburger-size);
  height: var(--hamburger-size);
  margin-left: 2rem;
  background-color: var(--black);
  position: relative;
}
@media (max-width: 768px) {
  .header__hamburger {
    margin-left: 0;
    --hamburger-size: 4rem;
  }
}
.header__hamburger span {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 2.5rem;
  height: 0.2rem;
  background-color: var(--white);
  top: 1.5rem;
}
.header__hamburger span:nth-child(2) {
  top: 2.3rem;
}
@media print, screen and (min-width: 769px) {
  .header__hamburger span {
    top: 2rem;
  }
  .header__hamburger span:nth-child(2) {
    top: 2.8rem;
  }
}
.header__hamburger.is-active .header__hamburger-bars {
  rotate: 27deg;
  transition: 0.4s;
}
.header__hamburger.is-active span:nth-child(1) {
  inset: 0;
  transform: none;
  margin: auto;
}
.header__hamburger.is-active span:nth-child(2) {
  inset: 0;
  transform: rotate(125deg);
  margin: auto;
}

@media (max-width: 768px) {
  .header__buttons,
  .header__nav-list {
    display: none;
  }
}

.header-drawer {
  background: linear-gradient(#ecf6fe 0%, #e2f0fb 20.92%, #f0f8ff 44.76%, #e2f0fc 62.56%, #ecf6fe 85.21%, #ecf6fe 100%);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 10000;
  opacity: 0;
  transition: opacity 0.5s, display 0.5s;
  transition-behavior: allow-discrete;
  padding: 13.5rem 0 10rem;
  overflow: auto;
}
.header-drawer .global-info__right-links svg {
  color: #a2a4a7;
}
@media (max-width: 768px) {
  .header-drawer {
    padding: 8rem 0;
  }
  .header-drawer .header__buttons {
    display: flex;
    margin-bottom: 4rem;
  }
}
.header-drawer.is-active {
  display: block;
  opacity: 1;
}
@starting-style {
  .header-drawer.is-active {
    opacity: 0;
  }
}
.header-drawer .global-info__copyright {
  color: #a2a4a7;
}
.header-drawer .global-info__right-link {
  color: #a2a4a7;
  padding-bottom: 0.6rem;
}

.footer {
  background-color: var(--accent1);
  border-radius: 3rem 3rem 0 0;
  padding: 8rem 0 4rem;
  position: relative;
  z-index: 2;
  color: #fff;
}
@media (max-width: 768px) {
  .footer {
    padding: 5rem 0 3rem;
    border-radius: 3rem 3rem 0 0;
  }
}
.footer a {
  transition: 0.5s;
}
.footer a:hover {
  opacity: 0.6;
}

a.footer__links__row__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.global-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4rem;
}
@media (max-width: 768px) {
  .global-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

.global-links__row__title {
  padding-bottom: 1rem;
  border-bottom: 1px solid currentColor;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  display: block;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .global-links__row__title {
    font-size: 1.6rem;
    padding-bottom: 0.5rem;
  }
}
.global-links__row__list {
  list-style: none;
}
.global-links__row__list svg {
  position: relative;
  top: -0.3rem;
  margin-left: 0.5rem;
}
.global-links__row__list a {
  display: block;
  font-size: 1.6rem;
  margin-top: 1rem;
}
@media (max-width: 768px) {
  .global-links__row__list a {
    font-size: 1.2rem;
  }
}

.global-info {
  display: flex;
  align-items: end;
}
@media (max-width: 768px) {
  .global-info {
    display: block;
  }
}
.global-info__logo {
  width: 19.2rem;
  margin-right: 4.5rem;
}
@media (max-width: 768px) {
  .global-info__logo {
    width: 17rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 768px) {
  .global-info__text {
    margin-bottom: 2rem;
  }
}
.global-info__text__title {
  font-weight: bold;
  margin-bottom: 0.5rem;
  font-size: 1.6rem;
}
@media (max-width: 768px) {
  .global-info__text__title {
    margin-bottom: 0;
  }
}
.global-info__text__top {
  font-size: 1.4rem;
  line-height: 2.5rem;
  margin-right: 4rem;
}
@media (max-width: 768px) {
  .global-info__text__top {
    font-size: 1.2rem;
    margin-right: 0;
  }
}
.global-info__contact {
  line-height: 2.5rem;
  font-size: 1.4rem;
}
@media (max-width: 768px) {
  .global-info__contact {
    font-size: 1.2rem;
    margin-bottom: 3rem;
  }
}
.global-info__right {
  margin-left: auto;
}
@media (max-width: 768px) {
  .global-info__right {
    text-align: center;
  }
}
.global-info__right-links {
  display: flex;
  gap: 2rem;
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  color: #c9e5fb;
}
@media (max-width: 768px) {
  .global-info__right-links {
    justify-content: center;
  }
}
.global-info__right-links a {
  color: #c9e5fb;
}
.global-info__right-links svg {
  color: #c9e5fb;
  width: 0.8rem;
  height: 0.8rem;
}
.global-info__copyright {
  text-align: right;
  font-size: 1.2rem;
}
@media (max-width: 768px) {
  .global-info__copyright {
    text-align: center;
  }
}

.c-accent-heading {
  display: flex;
  gap: 1rem;
  position: relative;
}
@media (max-width: 768px) {
  .c-accent-heading {
    gap: 0.5rem;
  }
}
.c-accent-heading svg {
  position: relative;
  top: 1rem;
  width: 1.7rem;
  height: 1.7rem;
}
@media (max-width: 768px) {
  .c-accent-heading svg {
    width: 1.4rem;
    height: 1.4rem;
    flex: 0 0 1.4rem;
    top: 0.5rem;
  }
}
@media (max-width: 768px) {
  .c-accent-heading .c-heading {
    font-size: 2.4rem;
  }
}

.c-heading {
  font-size: 4.8rem;
  letter-spacing: 0.06em;
  font-weight: bold;
  line-height: 7rem;
}
@media (max-width: 768px) {
  .c-heading {
    font-size: 3.2rem;
    line-height: 4.6rem;
  }
}
.c-heading--lg {
  font-size: 5.6rem;
  line-height: 8rem;
}
@media (max-width: 768px) {
  .c-heading--lg {
    font-size: 3.2rem;
    line-height: 4.6rem;
  }
}
.c-heading--sm {
  font-size: 3.2rem;
  line-height: 4.6rem;
}
@media (max-width: 768px) {
  .c-heading--sm {
    font-size: 2rem;
    line-height: 2.9rem;
  }
}
.c-heading-ruby {
  font-family: var(--font-en);
  font-weight: normal;
  font-size: 1.6rem;
  line-height: 2.3rem;
  color: #212121;
}
@media (max-width: 768px) {
  .c-heading-ruby {
    font-size: 1.4rem;
    line-height: 2rem;
  }
}
.c-heading-ruby::before {
  content: "";
  margin-right: 0.6rem;
  background-color: var(--accent1);
  width: 0.6rem;
  height: 0.6rem;
  display: inline-block;
  position: relative;
  top: -0.4rem;
}
@media (max-width: 768px) {
  .c-heading-ruby::before {
    top: -0.3rem;
  }
}
.c-heading-ruby--vertical {
  writing-mode: vertical-rl;
}
.c-heading-ruby--vertical::before {
  top: 0;
  margin: 0 0 0.6rem;
}

.c-heading-s {
  font-size: 3.6rem;
  letter-spacing: 0.2em;
  position: relative;
  margin-bottom: 4rem;
}
@media (max-width: 768px) {
  .c-heading-s {
    font-size: 2.4rem;
    display: flex;
  }
}
.c-heading-s::before {
  content: "";
  width: 0.8rem;
  height: 3.4rem;
  background-color: var(--accent1);
  position: relative;
  display: inline-block;
  margin-right: 1.5rem;
  top: 0.15rem;
}
@media (max-width: 768px) {
  .c-heading-s::before {
    width: 0.4rem;
    height: 2.4rem;
    margin-right: 0.9rem;
    top: 0.45rem;
  }
}

@media (max-width: 768px) {
  #wpadminbar {
    overflow: hidden;
  }
}

.grecaptcha-badge {
  z-index: 19;
}

.scroll-hint-shadow-wrap::after,
.scroll-hint-shadow-wrap::before {
  display: none !important;
}

[x-cloak] {
  display: none !important;
}

.svg-arrow1 {
  width: 1.6rem;
  height: 0.8rem;
}

.svg-external1 {
  width: 0.8rem;
  height: 0.8rem;
}

.svg-pdf1 {
  width: 1.7rem;
  height: 2rem;
}

.wrapper {
  position: relative;
  z-index: 2;
  overflow-x: clip;
}
.c-glass {
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.6);
  border: 2px solid #fff;
  /* Note: currently only Safari supports backdrop-filter */
  backdrop-filter: blur(20px);
  --webkit-backdrop-filter: blur(20px);
  /* (plus shape's fill blended on top as a separate layer with 60% opacity) */
}

.c-separate {
  background-image: radial-gradient(circle, #a2a4a7 1.5px, transparent 1.5px);
  background-position: left top;
  background-repeat: repeat-x;
  background-size: 12px 3px;
  max-width: 126.6rem;
  height: 3px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
.c-separate--s {
  background-image: radial-gradient(circle, #a2a4a7 1px, transparent 1px);
  height: 2px;
  background-size: 8px 2px;
}
.c-separate--white {
  background-image: radial-gradient(circle, #fff 1.5px, transparent 1.5px);
}
@media (max-width: 768px) {
  .c-separate {
    background-position: left 1px bottom;
    max-width: 100%;
  }
}

.c-box {
  background-color: #ffffff;
  border-radius: 1rem;
  padding: 3rem;
  overflow: hidden;
}
@media (max-width: 768px) {
  .c-box {
    padding: 2.5rem 2rem;
  }
}
.c-box--r2 {
  border-radius: 2rem;
}
@media (max-width: 768px) {
  .c-box--r2 {
    border-radius: 1rem;
  }
}

.c-before-square-title {
  text-indent: -1.2em;
  margin-left: 1.2em;
}
@media (max-width: 768px) {
  .c-before-square-title {
    text-indent: -0.8em;
    margin-left: 0.9em;
  }
}
.c-before-square-title::before {
  content: "";
  width: 0.6rem;
  height: 0.6rem;
  display: inline-block;
  background-color: var(--accent1);
  margin-right: 0.8rem;
  position: relative;
  top: -0.4rem;
}
@media (max-width: 768px) {
  .c-before-square-title::before {
    margin-right: 0.5rem;
    top: -0.3rem;
  }
}

.c-before-number-title {
  list-style-type: none;
  text-indent: -0.8em;
  margin-left: 2.8rem;
}
.c-before-number-title::before {
  content: attr(data-num);
  display: inline-block;
  color: var(--accent1);
  font-family: var(--font-en);
  font-size: 1.6rem;
  font-weight: bold;
  margin-right: 1rem;
  position: relative;
}
.c-privacy-box {
  background: #fff;
  padding: 3rem 4rem;
  overflow-y: auto;
  border-radius: 2rem;
  max-height: 50.6rem;
}

.c-resource-link {
  font-weight: bold;
  font-size: 1.6rem;
  width: fit-content;
  margin-left: auto;
  border-bottom: 1px solid #a2a4a7;
  padding-bottom: 0.5rem;
  display: flex;
  gap: 2rem;
  transition: 0.4s;
}
@media (max-width: 768px) {
  .c-resource-link {
    font-size: 1.4rem;
    gap: 1rem;
  }
}
.c-resource-link:hover {
  opacity: 0.7;
}

.cta {
  background-color: var(--thin);
  padding: 6rem 0 10rem;
  margin-bottom: -4rem;
  position: relative;
  z-index: 1;
  margin-top: 12rem;
}
@media (max-width: 768px) {
  .cta {
    margin-top: 8rem;
    padding: 3rem 1.5rem 7rem;
  }
}
.cta__inner {
  border-radius: 2rem;
  background: transparent;
  background-color: rgba(255, 255, 255, 0.5);
  border: 2px solid #fff;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 4rem;
  text-align: center;
}
@media (max-width: 768px) {
  .cta__inner {
    border-radius: 1rem;
    padding: 3rem 2rem;
  }
}
.cta__title {
  font-size: 4.8rem;
  letter-spacing: 0.1em;
  text-align: center;
  font-weight: bold;
  width: fit-content;
  margin: auto;
  color: var(--accent1);
  background-image: radial-gradient(circle, #a2a4a7 1.5px, transparent 1.5px);
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 15px 3px;
  padding-bottom: 0.8rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 768px) {
  .cta__title {
    font-size: 2rem;
    white-space: nowrap;
    padding: 0 0 1rem;
  }
}

.cta-buttons {
  margin-top: 3.5rem;
  display: flex;
  justify-content: center;
  gap: 7rem;
  font-weight: bold;
}
@media (max-width: 768px) {
  .cta-buttons {
    display: block;
    margin-top: 3rem;
  }
}

.cta-button-wrap__title {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
}

.c-anker-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .c-anker-links {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.c-anker-link {
  background-color: #fff;
  border-radius: 1rem;
  padding: 2rem 1.8rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: 0.4s;
}
@media (max-width: 768px) {
  .c-anker-link {
    padding: 1.5rem;
    font-size: 1.4rem;
  }
}
.c-anker-link:hover {
  background-color: var(--accent1);
  color: #fff;
}
.c-anker-link svg {
  width: 1rem;
  height: 0.5rem;
}

.splide__arrow {
  outline: 0 !important;
}

.c-data-table {
  display: grid;
  grid-template-columns: var(--left-cell-w, 11rem) 1fr;
  padding: 2rem 0;
  background-image: radial-gradient(circle, #a2a4a7 1px, transparent 1px);
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 8px 2px;
  line-height: 2.1875;
}
@media (max-width: 768px) {
  .c-data-table {
    grid-template-columns: 1fr;
    padding: 1.5rem 0;
    font-size: 1.4rem;
  }
}
.c-data-table dt {
  font-weight: bold;
}
@media print, screen and (min-width: 769px) {
  .c-data-table dt {
    text-align: center;
  }
}
@media print, screen and (min-width: 769px) {
  .c-data-table dd {
    padding-left: 5rem;
  }
}

.scroll-hint-icon {
  scale: 0.7;
}

.c-table-wrap {
  overflow-y: hidden !important;
}
@media (max-width: 768px) {
  .c-table-wrap {
    overflow-x: auto;
  }
}

.c-table {
  border-collapse: collapse;
  width: 100%;
}
@media (max-width: 768px) {
  .c-table {
    font-size: 1.4rem;
    min-width: 50rem;
  }
}
@media (max-width: 768px) {
  .c-table--cancel {
    min-width: 90rem;
  }
  .c-table--cancel td,
  .c-table--cancel th {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.c-table--radius {
  border-radius: 1rem;
  overflow: hidden;
}
.c-table thead th {
  background-color: var(--cell_bg, #def0fe);
}
.c-table tbody th {
  background-color: #dedede;
  width: var(--w, auto);
}
.c-table tbody td {
  background-color: #fff;
}
.c-table tbody th,
.c-table tbody td {
  border-bottom: 1px solid #ebebeb;
}
.c-table tbody tr:last-child td,
.c-table tbody tr:last-child th {
  border-bottom: none;
}
.c-table__th-bb-white {
  border-bottom: 1px solid #fff;
}
.c-table__th-br-white {
  border-right: 1px solid #fff;
}
.c-table__td-br-gray {
  border-right: 1px solid #ebebeb;
}
.c-table__th-empty {
  background-color: transparent !important;
}
.c-table__radius-lt_rt {
  border-radius: 1rem 1rem 0 0;
}
.c-table__radius-lt_lb {
  border-radius: 1rem 0 0 1rem;
}
.c-table__radius-rt {
  border-radius: 0 1rem 0 0;
}
.c-table__radius-rb {
  border-radius: 0 0 1rem 0;
}
.c-table__radius-lb {
  border-radius: 0 0 0 1rem;
}
.c-table__radius-lt {
  border-radius: 1rem 0 0 0;
}

.c-link {
  width: 18.3rem;
  margin-left: auto;
  border-bottom: 1px solid #a2a4a7;
  padding-bottom: 0.5rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: 0.4s;
}
.c-link:hover {
  opacity: 0.6;
}

.c-totop {
  position: fixed;
  bottom: 5rem;
  right: 5rem;
  z-index: 4;
}
@media (max-width: 768px) {
  .c-totop {
    width: 5rem;
    height: 5rem;
    right: 1.5rem;
  }
}
