@charset "UTF-8";
body {
  font-family: "Noto Sans JP", serif;
  color: #192636;
}

html {
  font-size: 100%;
}
@media (max-width: 1042px) {
  html {
    font-size: 1.5355086372vw;
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 100%;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

body {
  font-family: "Noto Sans JP", serif;
  color: #192636;
}

a,
button {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
a:hover,
button:hover {
  opacity: 0.7;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  a:hover,
  button:hover {
    opacity: 1;
  }
}

/*****************************
* A Modern CSS Reset (https://github.com/hankchizljaw/modern-css-reset)
* 上記に、ul要素,ol要素,a要素への記述追加
*****************************/
/* Box sizing rules */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd,
ul,
li {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  padding: 0;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

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

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

button {
  border: none;
  padding: 0;
  background-color: transparent;
  background-color: initial;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.inner {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  max-width: 1042px;
  padding-right: 1.5625rem;
  padding-left: 1.5625rem;
}
@media screen and (max-width: 768px) {
  .inner {
    padding-right: 0.75rem;
    padding-left: 0.75rem;
  }
}

/* contact__btn */
.contact__btn {
  width: 20.25rem;
  height: 3.875rem;
  color: #FFFFFF;
  background-color: #00A1E0;
  font-weight: 500;
  font-size: 1.625rem;
  text-align: center;
  padding: 0.6875rem 5.25rem 0.875rem 5.25rem;
  border-radius: 1.9375rem;
  -webkit-transition: color 0.2s, background-color 0.2s;
  transition: color 0.2s, background-color 0.2s;
  position: relative;
}
.contact__btn:focus {
  outline: none;
}
.contact__btn:hover {
  background-color: #006790;
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .contact__btn {
    width: 14.1875rem;
    height: 2.6875rem;
    padding: 0.5rem 3.6875rem 0.5625rem 3.75rem;
    font-size: 1.125rem;
  }
}

a.contact__btn::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 1.4375rem;
  margin: auto;
  vertical-align: middle;
  width: 0.875rem;
  height: 0.875rem;
  border-top: 0.125rem solid #FFFFFF;
  border-right: 0.125rem solid #FFFFFF;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: none;
  transition: none;
}
@media screen and (max-width: 768px) {
  a.contact__btn::after {
    right: 1rem;
    width: 0.625rem;
    height: 0.625rem;
  }
}

a.contact__btn:hover::after {
  -webkit-transition: none;
  transition: none;
  opacity: 1;
}

.btn2 {
  border-radius: 1.3125rem;
  width: 8.625rem;
  height: 2.625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #00A1E0;
  -webkit-transition: color 0.2s, background-color 0.2s;
  transition: color 0.2s, background-color 0.2s;
  position: relative;
  background-color: #FFFFFF;
}
.btn2:focus {
  outline: none;
}
.btn2:hover {
  background-color: #00A1E0;
  color: #FFFFFF;
  opacity: 1;
}
.btn2::after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0.9375rem;
  margin: auto;
  content: "";
  vertical-align: middle;
  width: 0.625rem;
  height: 0.625rem;
  border-top: 0.125rem solid #00A1E0;
  border-right: 0.125rem solid #00A1E0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: none;
  transition: none;
}
@media screen and (max-width: 768px) {
  .btn2::after {
    border-top: 1px solid #00A1E0;
    border-right: 1px solid #00A1E0;
    width: 0.5rem;
    height: 0.5rem;
  }
}

.btn2:hover::after {
  border-top: 0.125rem solid #FFFFFF;
  border-right: 0.125rem solid #FFFFFF;
  -webkit-transition: none;
  transition: none;
}
@media screen and (max-width: 768px) {
  .btn2:hover::after {
    border-top: 1px solid #FFFFFF;
    border-right: 1px solid #FFFFFF;
  }
}

.btn2 span {
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0;
  color: #00A1E0;
  padding: 0.625rem 1.25rem 0.625rem 0.625rem;
}
@media screen and (max-width: 768px) {
  .btn2 span {
    font-size: 0.875rem;
  }
}

.btn2:hover span {
  color: #FFFFFF;
  -webkit-transition: none;
  transition: none;
  opacity: 1;
}

.btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: color 0.2s, background-color 0.2s;
  transition: color 0.2s, background-color 0.2s;
  position: relative;
  font-size: 1rem;
  font-weight: 500;
  color: #00A1E0;
}
.btn:focus {
  outline: none;
}
.btn:hover {
  color: #006790;
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .btn {
    font-size: 0.875rem;
  }
}

.btn::after {
  position: absolute;
  top: 0.125rem;
  bottom: 0;
  right: 0.625rem;
  margin: auto;
  content: "";
  vertical-align: middle;
  width: 0.625rem;
  height: 0.625rem;
  border-top: 0.125rem solid #00A1E0;
  border-right: 0.125rem solid #00A1E0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: none;
  transition: none;
}
@media screen and (max-width: 768px) {
  .btn::after {
    right: -0.625rem;
    width: 0.5rem;
    height: 0.5rem;
  }
}

.btn:hover::after {
  border-top: 0.125rem solid #006790;
  border-right: 0.125rem solid #006790;
  -webkit-transition: none;
  transition: none;
}

.contact {
  padding-top: 12.5rem;
  padding-bottom: 8.75rem;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}
@media screen and (max-width: 768px) {
  .contact {
    padding-top: 2.625rem;
    padding-bottom: 2.5rem;
  }
}

.contact__inner.inner {
  padding-top: 4rem;
  padding-bottom: 6rem;
  background-color: #192636;
  border-radius: 0.75rem;
}
@media screen and (max-width: 768px) {
  .contact__inner.inner {
    padding-top: 1.625rem;
    padding-bottom: 2.8125rem;
  }
}

.contact__img-top {
  width: 8.125rem;
  -o-object-fit: cover;
     object-fit: cover;
  margin-right: auto;
  margin-left: auto;
}

.contact__title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.4;
  text-align: center;
  margin-top: 0.9375rem;
}
@media screen and (max-width: 768px) {
  .contact__title {
    font-size: 1.375rem;
    line-height: 1.4545;
  }
}

.contact__text {
  font-size: 1.125rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.77777777;
  text-align: center;
  margin-top: 0.625rem;
}
@media screen and (max-width: 768px) {
  .contact__text {
    font-size: 0.9375rem;
    line-height: 1.733333;
    margin-top: 1.1875rem;
  }
}

.contact__btn-wrap {
  margin-top: 2.9375rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .contact__btn-wrap {
    margin-top: 2.25rem;
  }
}

.footer {
  padding-top: 2rem;
  background-color: #192636;
}
@media screen and (max-width: 768px) {
  .footer {
    padding-top: 1.4375rem;
  }
}

.footer__inner {
  padding-left: 1.5625rem;
  padding-right: 1.5625rem;
  margin-right: auto;
  margin-left: auto;
  max-width: 75.5625rem;
  width: 100%;
  padding-bottom: 3.125rem;
}
@media screen and (max-width: 768px) {
  .footer__inner {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    margin-right: auto;
    margin-left: auto;
    max-width: 37.5rem;
    padding-bottom: 0.75rem;
  }
}

.footer__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .footer__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.footer__left {
  max-width: 21.25rem;
  width: 100%;
}
.footer__logo {
  width: 100%;
  margin-left: 0.625rem;
}
.footer__logo a {
  display: block;
}
.footer__logo.icon-logo .logo-name {
  color: #FFFFFF;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1;
  left: 3.125rem;
  top: 1.25rem;
}
@media screen and (max-width: 768px) {
  .footer__logo.icon-logo .logo-name {
    font-size: 0.9375rem;
    left: 1.5625rem;
    top: 0.625rem;
  }
}

.footer__logo.icon-logo a p {
  color: #FFFFFF;
  font-size: 0.625rem;
  font-weight: 500;
  line-height: 1;
  left: 3.125rem;
  top: 2.875rem;
}
@media screen and (max-width: 768px) {
  .footer__logo.icon-logo a p {
    left: 1.5625rem;
    top: 1.75rem;
  }
}

.footer__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

@media screen and (max-width: 768px) {
  .footer__logo.icon-logo img {
    max-width: 4.25rem;
  }
}

.footer__address {
  margin-top: 2.6875rem;
  font-size: 0.8125rem;
  line-height: 1.8461538;
  font-weight: 400;
  color: #FFFFFF;
  margin-left: 3.4375rem;
}
@media screen and (max-width: 768px) {
  .footer__address {
    font-size: 0.8125rem;
    margin-left: 1.5625rem;
    margin-top: 1.4375rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media screen and (max-width: 768px) {
  .footer__address-title {
    text-align: left;
  }
}

.footer__address span {
  color: #00A1E0;
}
.footer__nav-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.footer__nav-wrap:nth-child(2) {
  margin-left: 2.5rem;
}
.footer__nav-wrap:nth-child(3) {
  margin-left: 4.375rem;
}
.footer__nav li {
  position: relative;
}
.footer__nav li:not(:first-child) {
  margin-top: 0.5rem;
}
.footer__nav li a {
  font-size: 0.9375rem;
  line-height: 2.1333333;
  font-weight: 500;
  color: #FFFFFF;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .footer__nav li a {
    font-size: 0.9375rem;
  }
}

.footer__nav-icon {
  width: 0.8125rem;
  height: 0.8125rem;
  margin-right: 0.375rem;
  vertical-align: middle;
}

.footer__contact {
  margin-top: 3.75rem;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .footer__contact {
    margin-top: 1.4375rem;
    text-align: center;
  }
}

.footer__contact .contact__btn {
  padding: 0.375rem 2.6875rem 0.625rem 2.0625rem;
  font-size: 1.125rem;
  line-height: 1;
  color: #FFFFFF;
}
@media screen and (max-width: 768px) {
  .footer__contact .contact__btn {
    font-size: 0.9375rem;
    padding: 0.375rem 1.625rem 0.625rem 0.9375rem;
  }
}

.footer__contact .contact__btn::after {
  right: 1.125rem;
  width: 0.625rem;
  height: 0.625rem;
}
@media screen and (max-width: 768px) {
  .footer__contact .contact__btn::after {
    right: 0.75rem;
    width: 0.5rem;
    height: 0.5rem;
  }
}

.footer__copyright-wrap {
  background-color: #00A1E0;
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
}
@media screen and (max-width: 768px) {
  .footer__copyright-wrap {
    padding-top: 0.3125rem;
    padding-bottom: 0.3125rem;
  }
}

.footer__copyright {
  display: block;
  text-align: center;
  font-weight: 400;
  font-size: 0.75rem;
  color: #FFFFFF;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .footer__copyright {
    font-size: 0.625rem;
  }
}

.layout-header {
  position: fixed;
  z-index: 900;
  top: 0;
  right: 0;
  left: 0;
}

.header {
  height: 6.25rem;
  background-color: #FFFFFF;
  -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, .1607843137);
          box-shadow: 0px 3px 6px rgba(0, 0, 0, .1607843137);
}
@media screen and (max-width: 768px) {
  .header {
    height: 3.25rem;
  }
}

.header__inner {
  padding-left: 1.5625rem;
  padding-right: 1.5625rem;
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 87.5rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .header__inner {
    padding-left: 0.5rem;
    padding-right: 0.75rem;
  }
}

.header__logo {
  max-width: 39.6875rem;
  width: 40%;
  height: inherit;
}
@media screen and (max-width: 1320px) {
  .header__logo {
    width: 33%;
  }
}
@media screen and (max-width: 768px) {
  .header__logo {
    width: 80%;
    position: relative;
    z-index: 1000;
  }
}

.header__nav {
  height: inherit;
  display: block;
}
@media screen and (max-width: 768px) {
  .header__nav {
    display: none;
  }
}

.header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: inherit;
}

.header__nav-item {
  height: inherit;
}

.header__nav-item.header__nav-item--contact {
  margin-left: 1.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 768px) {
  .header__nav-list.md-show .header__nav-item.header__nav-item--contact {
    margin-left: 0;
  }
}

.header__nav-item a {
  padding: 1.5625rem 1.875rem;
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.2941;
  color: #333333;
}
@media screen and (max-width: 1320px) {
  .header__nav-item a {
    font-size: 0.9375rem;
    padding: 1.5625rem;
  }
}
@media screen and (max-width: 1100px) {
  .header__nav-item a {
    font-size: 0.9375rem;
    padding: 1.25rem;
  }
}

.header__nav-item.header__nav-item--contact a {
  padding: 0.5625rem 1.25rem 0.60625rem 1.875rem;
  height: 2.625rem;
  width: 11.25rem;
  position: relative;
  height: initial;
  color: #FFFFFF;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0;
  background-color: #00A1E0;
  border-radius: 1.3125rem;
}
.header__nav-item.header__nav-item--contact a:focus {
  outline: none;
}
.header__nav-item.header__nav-item--contact a:hover {
  background-color: #006790;
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .header__nav-item.header__nav-item--contact a {
    padding: 0.5rem 0.9375rem 0.625rem 0.625rem;
    height: 2.1875rem;
    width: 6.875rem;
    font-size: 0.75rem;
  }
}
@media screen and (max-width: 500px) {
  .header__nav-item.header__nav-item--contact a {
    height: 1.5rem;
    width: 5.6875rem;
    padding: 0.4375rem 0.625rem 0.5rem 0.625rem;
    font-size: 0.625rem;
    margin-right: 0.5rem;
  }
}

.header__nav-item.header__nav-item--contact a::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0.9375rem;
  margin: auto;
  content: "";
  vertical-align: middle;
  width: 0.625rem;
  height: 0.625rem;
  border-top: 0.125rem solid #FFFFFF;
  border-right: 0.125rem solid #FFFFFF;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: none;
  transition: none;
}
@media screen and (max-width: 768px) {
  .header__nav-item.header__nav-item--contact a::after {
    border-top: 0.0625rem solid #FFFFFF;
    border-right: 0.0625rem solid #FFFFFF;
    right: 0.625rem;
    width: 0.3125rem;
    height: 0.3125rem;
  }
}

.header__nav-item.header__nav-item--contact a:hover::after {
  -webkit-transition: none;
  transition: none;
  opacity: 1;
}

.header__hamburger {
  display: none;
}
@media screen and (max-width: 768px) {
  .header__hamburger {
    display: block;
    margin: 0;
    padding: 0;
    outline: none;
    border: none;
    position: relative;
    z-index: 1001;
    height: inherit;
    cursor: pointer;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
}

.header__hamburger.is-open {
  background-color: transparent;
}

.header__hamburger span {
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: block;
  width: 1.5625rem;
  height: 1.5px;
  background-color: #00A1E0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.header__hamburger span:nth-of-type(1) {
  top: -0.3125rem;
}

.header__hamburger span:nth-of-type(2) {
  top: 0;
}

.header__hamburger span:nth-of-type(3) {
  top: 0.3125rem;
}

.header__hamburger.is-open span:nth-of-type(1) {
  top: 0;
  -webkit-transform: translateX(-50%) rotate(45deg);
          transform: translateX(-50%) rotate(45deg);
}

.header__hamburger.is-open span:nth-of-type(2) {
  transform: scaleX(0);
  opacity: 0;
  transition: 0.3s ease;
}

.header__hamburger.is-open span:nth-of-type(3) {
  top: -0.125rem;
  -webkit-transform: translateX(-50%) rotate(-45deg);
          transform: translateX(-50%) rotate(-45deg);
}

.header__drawer {
  padding: 14.25rem 0;
  position: absolute;
  z-index: 1000;
  top: 0;
  right: -120%;
  width: 100%;
  height: 100vh;
  background-color: #192636;
  overflow-y: scroll;
  scrollbar-width: none;
  -webkit-transition: 0.6s;
  transition: 0.6s;
}

.header__drawer.is-open {
  right: 0;
}

.header__drawer::-webkit-scrollbar {
  display: none;
}

.header__drawer-item a {
  padding: 0.9375rem 0;
  display: block;
  font-size: 1.625rem;
  font-weight: 700;
  color: #FFFFFF;
  text-align: center;
  text-transform: uppercase;
}

.header__drawer-item.header__drawer-item--contact a {
  padding: 0.625rem 1.25rem;
  position: relative;
  margin-top: 0.625rem;
  color: #FFFFFF;
  background-color: #00A1E0;
  border-radius: 2.5rem;
  width: 18.75rem;
  margin-right: auto;
  margin-left: auto;
}

.mv {
  position: relative;
  background: url("../images/mv.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  min-height: 44.875rem;
  margin-top: 6.25rem;
}
@media screen and (max-width: 768px) {
  .mv {
    background: none;
    margin-top: 3.25rem;
    min-height: 0;
  }
}

.mv__inner {
  max-width: 50.3125rem;
  width: 50%;
  margin-left: auto;
  padding-right: 1.5625rem;
  padding-top: 14%;
  padding-bottom: 10%;
  min-height: inherit;
}
@media screen and (min-width: 1920px) {
  .mv__inner {
    max-width: 62.5rem;
    width: 100%;
    padding-top: 14%;
  }
}
@media screen and (max-width: 1320px) {
  .mv__inner {
    width: 55%;
    padding-top: 17%;
  }
}
@media screen and (max-width: 1100px) {
  .mv__inner {
    width: 60%;
    padding-top: 21%;
  }
}
@media screen and (max-width: 768px) {
  .mv__inner {
    max-width: 37.5rem;
    margin-right: auto;
    margin-left: auto;
    padding-left: 1.5625rem;
    padding-right: 1.5625rem;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-top: 1.875rem;
  }
}

.mv__title-wrap {
  background: rgba(255, 255, 255, .8);
  border-radius: 1.25rem;
  padding-top: 3.75rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  padding-bottom: 3.4375rem;
  max-width: 40rem;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .mv__title-wrap {
    display: block;
    padding-top: 7%;
  }
}

.mv__title-wrap .mv__img-top {
  position: absolute;
  left: 50%;
  top: -14%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 15.625rem;
}
@media screen and (max-width: 768px) {
  .mv__title-wrap .mv__img-top {
    width: 55%;
  }
}
@media screen and (max-width: 500px) {
  .mv__title-wrap .mv__img-top {
    width: 47%;
    top: -12%;
  }
}

.mv__title-wrap .mv__img-bottom {
  position: absolute;
  left: 50%;
  bottom: -72%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 22.5rem;
}
@media screen and (max-width: 768px) {
  .mv__title-wrap .mv__img-bottom {
    width: 60%;
    bottom: -29%;
  }
}
@media screen and (max-width: 500px) {
  .mv__title-wrap .mv__img-bottom {
    width: 57.5%;
  }
}

.mv__title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: #00A1E0;
  font-family: "Noto Sans JP", serif;
}
@media screen and (max-width: 768px) {
  .mv__title {
    font-size: 1.75rem;
    line-height: 1.21428;
  }
}

.mv__title-text {
  margin-top: 1.5625rem;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.4444444;
  color: #192636;
}
@media screen and (max-width: 768px) {
  .mv__title-text {
    font-size: 1rem;
    line-height: 1.625;
    margin-top: 0.625rem;
  }
}

/* ページネーションの汎用スタイル */
.nav-links ul {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.1875rem;
}

.nav-links li > * {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  height: 3.3125rem;
}

.nav-links li > *:not(.dots) {
  margin: 0 0.5rem;
  width: 3.3125rem;
  border-radius: 50%;
  color: #00A1E0;
  background: #FFFFFF;
  border: 2px solid #00A1E0;
  -webkit-transition: color 0.3s ease, background 0.3s ease;
  transition: color 0.3s ease, background 0.3s ease;
}
@media screen and (max-width: 768px) {
  .nav-links li > *:not(.dots) {
    font-size: 1rem;
    width: 2.75rem;
    height: 2.75rem;
  }
}

.nav-links li > .dots {
  color: #00A1E0;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  font-size: 2.875rem;
  margin: 0 0.25rem;
}
@media screen and (max-width: 768px) {
  .nav-links li > .dots {
    font-size: 2rem;
  }
}

.nav-links li > .current,
.nav-links li > a:hover {
  color: #FFFFFF;
  background: #00A1E0;
}

.pagination ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.prev.page-numbers.border-none,
.next.page-numbers.border-none {
  border: none;
}

.prev.page-numbers.border-none,
.next.page-numbers.border-none {
  border: none;
  margin: 0;
}

.app-detail {
  margin-top: 6.25rem;
}
@media screen and (max-width: 768px) {
  .app-detail {
    margin-top: 3.25rem;
  }
}

.app-detail__inner {
  max-width: 54.625rem;
  padding-top: 5.625rem;
  padding-left: 1.5625rem;
  padding-right: 1.5625rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .app-detail__inner {
    padding-top: 2.5625rem;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    max-width: 37.5rem;
  }
}

.app-detail__heading {
  text-align: center;
}

.app-detail__subtitle {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.363636363;
  color: #192636;
}
@media screen and (max-width: 768px) {
  .app-detail__subtitle {
    font-size: 0.9375rem;
    line-height: 2;
  }
}

.app-detail__title {
  font-size: 2.5rem;
  line-height: 1.2;
  font-weight: 700;
  color: #00A1E0;
  margin-top: 0.8125rem;
}
@media screen and (max-width: 768px) {
  .app-detail__title {
    font-size: 1.25rem;
    line-height: 2;
    margin-top: 0rem;
  }
}

/* ナビゲーション */
.app-detail__nav {
  text-align: center;
  margin-top: 1.875rem;
}
@media screen and (max-width: 768px) {
  .app-detail__nav {
    margin-top: 0.625rem;
  }
}

.app-detail__nav-list {
  list-style: none;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.75rem;
}
@media screen and (max-width: 768px) {
  .app-detail__nav-list {
    gap: 0.5rem;
  }
}

.app-detail__nav-item {
  display: inline-block;
}

.app-detail__nav-link {
  text-decoration: none;
  padding: 0.125rem 1.375rem;
  border: 1px solid #00A1E0;
  color: #00A1E0;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 0.8125rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  .app-detail__nav-link {
    font-size: 0.6875rem;
    padding: 0.09375rem 0.625rem;
  }
}

/* 特徴リスト */
.app-detail__features {
  background: #F7F7F7;
  padding: 1.75rem 1.5625rem;
  border-radius: 0.5rem;
  margin-top: 5rem;
}
@media screen and (max-width: 768px) {
  .app-detail__features {
    padding: 0.875rem 0.375rem;
    border-radius: 0.375rem;
    margin-top: 1.8125rem;
  }
}

.app-detail__features-list {
  list-style: none;
  padding: 0;
}

.app-detail__features-item {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 2.1111111;
  color: #192636;
}
@media screen and (max-width: 768px) {
  .app-detail__features-item {
    font-size: 0.9375rem;
    font-weight: 400;
    line-height: 2;
  }
}

.app-detail__features-item + .app-detail__features-item {
  margin-top: 0.3125rem;
}
@media screen and (max-width: 768px) {
  .app-detail__features-item + .app-detail__features-item {
    margin-top: 0;
  }
}

/* 説明セクション */
.app-detail__description {
  margin-top: 3.75rem;
}
@media screen and (max-width: 768px) {
  .app-detail__description {
    margin-top: 2.4375rem;
  }
}

.app-detail__description-title {
  font-size: 1.375rem;
  line-height: 1.363636;
  font-weight: 700;
  color: #00A1E0;
}
@media screen and (max-width: 768px) {
  .app-detail__description-title {
    font-size: 0.9375rem;
    line-height: 2;
  }
}

.app-detail__description-subtitle {
  font-size: 1.125rem;
  line-height: 1.875;
  font-weight: 700;
  color: #192636;
  margin-top: 1.125rem;
}
@media screen and (max-width: 768px) {
  .app-detail__description-subtitle {
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-top: 0.6875rem;
  }
}

.app-detail__description-text {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.875;
  color: #192636;
  margin-top: 0.5625rem;
}
@media screen and (max-width: 768px) {
  .app-detail__description-text {
    font-size: 0.9375rem;
    line-height: 2;
    margin-top: 0.3125rem;
  }
}

/* 全体のスタイル */
/* 定義リストのスタイル */
.app-detail__list {
  background: #F7F7F7;
  padding: 0.9375rem 1.25rem 1.1875rem;
  border-radius: 0.5rem;
  margin-top: 1.75rem;
}
@media screen and (max-width: 768px) {
  .app-detail__list {
    padding: 1.1875rem 1rem 1.375rem;
    border-radius: 0.5rem;
    margin-top: 1.5625rem;
  }
}

/* 各項目のスタイル */
.app-detail__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem; /* タイトルと内容の間隔 */
  margin-bottom: 0.625rem;
}
@media screen and (max-width: 768px) {
  .app-detail__item {
    display: block;
  }
}

/* タイトル部分のスタイル */
.app-detail__item-title {
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.875;
  color: #192636;
  min-width: 6rem;
}
@media screen and (max-width: 768px) {
  .app-detail__item-title {
    font-size: 0.9375rem;
    line-height: 2;
  }
}

/* 内容部分のスタイル */
.app-detail__item-content {
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.875;
  color: #192636;
  margin-left: 1.375rem;
}
@media screen and (max-width: 768px) {
  .app-detail__item-content {
    font-size: 0.9375rem;
    line-height: 2;
  }
}

/* リンク専用のスタイル */
.app-detail__item--link a {
  color: #00A1E0;
  text-decoration: none;
}

.app-detail__item--link a:hover {
  text-decoration: underline;
  opacity: 1;
}

.app__other {
  margin-top: 15.9375rem;
  padding-bottom: 10.8125rem;
}
@media screen and (max-width: 768px) {
  .app__other {
    margin-top: 5.8125rem;
    padding-bottom: 5.75rem;
  }
}

.app-other__list-title {
  text-align: center;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.363636363;
  color: #192636;
  padding-bottom: 1.8125rem;
  border-bottom: solid 1px #B4B4B4;
}
@media screen and (max-width: 768px) {
  .app-other__list-title {
    font-size: 1rem;
    line-height: 1.875;
    padding-bottom: 1.0625rem;
  }
}

/* グリッド用のスタイル */
.guide__content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.625rem 3.125rem;
}
@media screen and (max-width: 768px) {
  .guide__content {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.375rem 1.1875rem;
  }
}

.guide__content-item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 5;
  margin-bottom: 3.75rem;
}
@media screen and (max-width: 768px) {
  .guide__content-item {
    margin-bottom: 2.5rem;
  }
}

.card {
  grid-row: span 5;
  display: grid;
  grid-template-rows: subgrid;
  gap: 0.625rem;
}
@media screen and (max-width: 768px) {
  .card {
    gap: 0.625rem;
  }
}

.card__img {
  width: 100%;
  position: relative;
}

.card__img-wrap {
  width: 100%;
  position: relative;
}

.card__img img {
  aspect-ratio: 300/225;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: auto;
  border-radius: 0.625rem;
}
@media screen and (max-width: 768px) {
  .card__img img {
    aspect-ratio: 163/122.25;
    width: 100%;
  }
}

.card__label {
  position: absolute;
  bottom: 0;
  right: 0;
  margin: 0;
  color: #333333;
  font-size: 0.625rem;
  font-weight: 500;
  font-family: "Noto Sans JP", serif;
  line-height: 1;
  padding: 0.375rem 0.625rem;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .card__label {
    padding: 0.3125rem 0.625rem;
  }
}

.card__heading {
  margin-bottom: -0.5rem;
  margin-top: -0.3125rem;
}
@media screen and (max-width: 768px) {
  .card__heading {
    margin-bottom: -0.5rem;
  }
}

.card__heading span {
  padding-left: 0.4375rem;
  padding-right: 0.5625rem;
  padding-top: 0.125rem;
  padding-bottom: 0.125rem;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 2;
  font-family: "Poppins", serif;
  color: #535353;
  background-color: #E3E3E3;
}
@media screen and (max-width: 768px) {
  .card__heading span {
    font-size: 0.6875rem;
  }
}

.card__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.3125rem;
}
@media screen and (max-width: 768px) {
  .card__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 0;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.card__title--long {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.625rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.card__title-sub {
  position: relative;
  margin-right: 1.25rem;
  font-size: 0.8125rem;
  line-height: 1.2;
  font-weight: 700;
  font-family: "Noto Sans JP", serif;
  color: gray;
}
@media screen and (max-width: 768px) {
  .card__title-sub {
    margin-right: 0.625rem;
    margin-top: 0.3125rem;
  }
}

.card__title-sub::after {
  content: "";
  position: absolute;
  margin-left: 0.4375rem;
  width: 1px;
  height: 0.875rem;
  background-color: gray;
}
@media screen and (max-width: 768px) {
  .card__title-sub::after {
    margin-top: 0.125rem;
  }
}

.card__title-main {
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.647058;
  font-family: "Noto Sans JP", serif;
  color: #192636;
  letter-spacing: 0.03em;
  word-break: break-all;
  -webkit-hyphens: auto;
      -ms-hyphens: auto;
          hyphens: auto;
}
@media screen and (max-width: 768px) {
  .card__title-main {
    font-size: 0.9375rem;
  }
}

.card__text {
  margin-top: 0.4375rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.71428;
  font-family: "Noto Sans JP", serif;
  color: gray;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .card__text {
    margin-top: 0;
    font-size: 0.8125rem;
    line-height: 1.461538;
  }
}

.card__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 0.625rem;
}
@media screen and (max-width: 768px) {
  .card__bottom {
    margin-top: 0.375rem;
  }
}

.card__time {
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.6666667;
  color: gray;
}
@media screen and (max-width: 768px) {
  .card__time {
    font-size: 0.6875rem;
    letter-spacing: 0;
  }
}

.card__link {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 0.8125rem;
  padding-right: 0.8125rem;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  color: #192636;
  letter-spacing: 0;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 768px) {
  .card__link {
    font-size: 0.6875rem;
    padding-left: 0.25rem;
    padding-right: 0.5rem;
  }
}

.card__link:hover {
  opacity: 0.7;
}

.card__link:after {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-top: 1.2px solid #333333;
  border-right: 1.2px solid #333333;
  -webkit-transform: rotate(45deg) translateY(-50%);
          transform: rotate(45deg) translateY(-50%);
  position: absolute;
  top: 43%;
  right: 0;
  border-radius: 1px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 768px) {
  .card__link:after {
    width: 0.3125rem;
    height: 0.3125rem;
  }
}

.guide__icon-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 3.125rem;
}
@media screen and (max-width: 768px) {
  .guide__icon-items {
    gap: 2.1875rem 1.1875rem;
  }
}
@media screen and (max-width: 500px) {
  .guide__icon-items {
    width: 90%;
  }
}
@media screen and (max-width: 425px) {
  .guide__icon-items {
    width: 100%;
  }
}

.guide__icon-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25rem;
}
@media screen and (max-width: 768px) {
  .guide__icon-item {
    gap: 0.625rem;
  }
}

.guide__icon-item img {
  width: 4.5rem;
  height: 4.5rem;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .guide__icon-item img {
    width: 4.125rem;
    height: 4.125rem;
  }
}

.guide__icon-text {
  margin-top: 0.625rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0;
  font-family: "Noto Sans JP", serif;
  color: #192636;
}
@media screen and (max-width: 768px) {
  .guide__icon-text {
    margin-top: 0.3125rem;
    font-size: 0.875rem;
    line-height: 1.285714;
  }
}

.guide__icon-text span {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.428571;
  letter-spacing: 0;
  font-family: "Noto Sans JP", serif;
  color: #192636;
}
@media screen and (max-width: 768px) {
  .guide__icon-text span {
    font-size: 0.75rem;
    line-height: 1.285714;
  }
}

.app {
  margin-top: 6.25rem;
}
@media screen and (max-width: 768px) {
  .app {
    margin-top: 3.25rem;
  }
}

.app__inner {
  padding-top: 5.625rem;
}
@media screen and (max-width: 768px) {
  .app__inner {
    padding-top: 2.5625rem;
  }
}

.app__title {
  font-size: 2.5rem;
  line-height: 1.2;
  font-weight: 700;
  color: #00A1E0;
}
@media screen and (max-width: 768px) {
  .app__title {
    font-size: 1.25rem;
    line-height: 1.7;
  }
}

.app__text {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 2.1111111;
  color: #192636;
  margin-top: 4.3125rem;
}
@media screen and (max-width: 768px) {
  .app__text {
    font-size: 0.9375rem;
    line-height: 2;
    margin-top: 2.5625rem;
  }
}

.app__text span {
  color: #00A1E0;
  text-decoration: underline;
}

.app__list {
  margin-top: 5.625rem;
}
@media screen and (max-width: 768px) {
  .app__list {
    margin-top: 3.4375rem;
  }
}

.app-other__list {
  margin-top: 1.875rem;
}
@media screen and (max-width: 768px) {
  .app-other__list {
    margin-top: 1.14rem;
  }
}

.app__item-title {
  font-size: 1.375rem;
  line-height: 1.363636;
  font-weight: 700;
  color: #FFFFFF;
  background-color: #00A1E0;
  border-radius: 0.5rem;
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
  padding-right: 1.25rem;
  padding-left: 1.25rem;
}
@media screen and (max-width: 768px) {
  .app__item-title {
    padding-top: 0.4375rem;
    padding-bottom: 0.4375rem;
    font-size: 1rem;
    line-height: 1.875;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.app-detail__item-subtitle {
  font-size: 1.375rem;
  line-height: 1.363636;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.363636363;
  color: #192636;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .app-detail__item-subtitle {
    font-size: 0.9375rem;
    line-height: 2;
  }
}

.app__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  margin-top: 1.8125rem;
  border-bottom: 1px solid #B4B4B4;
  padding-bottom: 2.4375rem;
}
@media screen and (max-width: 768px) {
  .app__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 0.9375rem;
    padding-bottom: 0.875rem;
  }
}

.app__item:first-child {
  border-top: 1px solid #B4B4B4;
  padding-top: 2.4375rem;
}
@media screen and (max-width: 768px) {
  .app__item {
    padding-top: 0.875rem;
  }
}

.app__content {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .app__content {
    width: 100%;
  }
}

.app__content-subtitle {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 2.1111111;
  color: #192636;
}
@media screen and (max-width: 768px) {
  .app__content-subtitle {
    font-size: 0.9375rem;
    line-height: 2;
  }
}

.app__content-title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.125;
  color: #00A1E0;
}
@media screen and (max-width: 768px) {
  .app__content-title {
    font-size: 1.125rem;
    line-height: 2;
  }
}

.app__item-btn-wrap {
  margin-top: 2.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.75rem;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.app__item-btn {
  border-radius: 0.8125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.6875rem;
  padding: 0.125rem 1rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #00A1E0;
  -webkit-transition: color 0.2s, background-color 0.2s;
  transition: color 0.2s, background-color 0.2s;
  position: relative;
  background-color: #FFFFFF;
}
.app__item-btn:focus {
  outline: none;
}

.app__item-btn span {
  font-size: 0.875rem;
  font-weight: 500;
  color: #00A1E0;
}

.app__right {
  margin-left: 1.875rem;
  width: 45%;
}
@media screen and (max-width: 768px) {
  .app__right {
    margin-left: 0;
    width: 95%;
  }
}

.app__right-text {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.75;
  color: #192636;
}
@media screen and (max-width: 768px) {
  .app__right-text {
    margin-top: 0.9375rem;
    font-size: 0.9375rem;
    line-height: 2;
  }
}

.app__link-wrap {
  text-align: right;
  margin-top: 0.625rem;
}
@media screen and (max-width: 768px) {
  .app__link-wrap {
    margin-top: 0.25rem;
  }
}

.app__link {
  color: #00A1E0;
  text-decoration: none;
  -webkit-transition: color 0.2s, background-color 0.2s;
  transition: color 0.2s, background-color 0.2s;
  position: relative;
  font-size: 1.0625rem;
  font-weight: 500;
  color: #00A1E0;
  padding-right: 0.9375rem;
}
.app__link:focus {
  outline: none;
}
.app__link:hover {
  color: #006790;
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .app__link {
    font-size: 0.9375rem;
    padding-right: 0.3125rem;
  }
}

.app__link::after {
  position: absolute;
  top: 0.125rem;
  bottom: 0;
  right: -0.75rem;
  margin: auto;
  content: "";
  vertical-align: middle;
  width: 0.625rem;
  height: 0.625rem;
  border-top: 0.125rem solid #00A1E0;
  border-right: 0.125rem solid #00A1E0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: none;
  transition: none;
}
@media screen and (max-width: 768px) {
  .app__link::after {
    right: -0.625rem;
    width: 0.5rem;
    height: 0.5rem;
  }
}

.app__link:hover::after {
  border-top: 0.125rem solid #006790;
  border-right: 0.125rem solid #006790;
  -webkit-transition: none;
  transition: none;
}

.app__btn-wrap {
  margin-top: 8.125rem;
  padding-bottom: 7.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 768px) {
  .app__btn-wrap {
    margin-top: 5.4375rem;
    padding-bottom: 5rem;
  }
}

.app__btn.btn2 {
  width: 13.8125rem;
  height: 2.625rem;
}
@media screen and (max-width: 768px) {
  .app__btn.btn2 {
    width: 9.8125rem;
    height: 2.0625rem;
  }
}

.app__btn.btn2 span {
  padding: 0.375rem 1.375rem 0.5rem 1rem;
}
@media screen and (max-width: 768px) {
  .app__btn.btn2 span {
    font-size: 0.875rem;
    padding: 0.375rem 1.375rem 0.5rem 1rem;
  }
}

.app__btn.btn2::after {
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
  right: 1.25rem;
  top: -0.125rem;
}
@media screen and (max-width: 768px) {
  .app__btn.btn2::after {
    right: 1rem;
    width: 0.5rem;
    height: 0.5rem;
  }
}

.app__contact.contact {
  padding-top: 7.5rem;
}
@media screen and (max-width: 768px) {
  .app__contact.contact {
    padding-top: 5.6875rem;
  }
}

.training-services__item-text {
  margin-top: 1.5rem;
  font-size: 1.125rem;
  line-height: 2.111111;
  font-weight: 500;
  color: #192636;
}
@media screen and (max-width: 768px) {
  .training-services__item-text {
    font-size: 0.9375rem;
    line-height: 2;
  }
}

.support__item p {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.57142;
  color: #192636;
  text-align: right;
  margin-top: 0.375rem;
}
@media screen and (max-width: 768px) {
  .support__item p {
    font-size: 0.8125rem;
    line-height: 1.6923;
  }
}

/* 2つ目以降のliにmargin-topを指定 */
/* 数字のスタイル */
.support__item ol li::before {
  counter-increment: li;
  content: counter(li);
  position: absolute;
  left: 0;
  top: 0.375rem; /* 数字のY軸線上の位置を調整 */
  display: block;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  background-color: #00A1E0;
  font-size: 0.6875rem;
  color: #FFFFFF;
  line-height: 20px;
  text-align: center;
}

.support__title {
  margin-top: 1.6875rem;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.36363636;
  color: #00A1E0;
}
@media screen and (max-width: 768px) {
  .support__title {
    margin-top: 0.875rem;
    font-size: 1rem;
    line-height: 1.875;
  }
}

.support__title.mt108 {
  margin-top: 6.75rem;
}
@media screen and (max-width: 768px) {
  .support__title.mt108 {
    margin-top: 5.25rem;
  }
}

.support__title.mt96 {
  margin-top: 6rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #B4B4B4;
}
@media screen and (max-width: 768px) {
  .support__title.mt96 {
    margin-top: 4.8125rem;
  }
}

.support__title.mt50 {
  margin-top: 3.125rem;
}
@media screen and (max-width: 768px) {
  .support__title.mt50 {
    margin-top: 2.3125rem;
  }
}

.straining-services__item.mt100 {
  margin-top: 6.25rem;
}
@media screen and (max-width: 768px) {
  .straining-services__item.mt100 {
    margin-top: 5rem;
  }
}

.support__text {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.875;
  color: #192636;
  margin-top: 0.5625rem;
}
@media screen and (max-width: 768px) {
  .support__text {
    font-size: 0.9375rem;
    line-height: 2;
  }
}

.support__hr {
  margin-top: 1.9375rem;
  margin-bottom: 1.9375rem;
  border: 1px solid #C3C1C1;
}
@media screen and (max-width: 768px) {
  .support__hr {
    margin-top: 1.375rem;
    margin-bottom: 1.375rem;
  }
}

.support-example__list {
  margin-top: 2.8125rem;
  width: 89%;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .support-example__list {
    margin-top: 2.5rem;
    width: 100%;
  }
}

.support-example__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
.support-example__item + .support-example__item {
  margin-top: 2.8125rem;
}
@media screen and (max-width: 768px) {
  .support-example__item + .support-example__item {
    margin-top: 1.875rem;
  }
}

.support-example__item-img {
  position: relative;
  width: 21rem;
  aspect-ratio: 336 / 203;
  overflow: hidden;
  flex-shrink: 0;
  border-radius: 0.5rem;
}

.support-example__item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media screen and (max-width: 768px) {
  .support-example__item-img {
    width: 8.375rem;
    aspect-ratio: 134 / 81;
    border-radius: 0.375rem;
  }

  .support-example__item-img img {
    border-radius: 0.375rem;
  }
}


.support-example__item-content {
  margin-left: 1.875rem;
}
@media screen and (max-width: 768px) {
  .support-example__item-content {
    margin-left: 0.5625rem;
  }
}

.support-example__item-title {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.8888888;
  color: #333333;
}
@media screen and (max-width: 768px) {
  .support-example__item-title {
    font-size: 0.9375rem;
    line-height: 1.46666666;
  }
}

.support-example__item-text {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.875;
  color: #192636;
  margin-top: 0.75rem;
}
@media screen and (max-width: 768px) {
  .support-example__item-text {
    font-size: 0.8125rem;
    margin-top: 0.3125rem;
    line-height: 1.6923;
  }
}

.support-example__item-btn-wrap {
  margin-top: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.6875rem;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .support-example__item-btn-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    margin-top: 0.5625rem;
  }
}

.support-example__item-btn {
  border-radius: 0.8125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.6875rem;
  padding: 0.125rem 1rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #00A1E0;
  -webkit-transition: color 0.2s, background-color 0.2s;
  transition: color 0.2s, background-color 0.2s;
  position: relative;
  background-color: #FFFFFF;
}
.support-example__item-btn:focus {
  outline: none;
}
@media screen and (max-width: 768px) {
  .support-example__item-btn {
    font-size: 0.6875rem;
    padding: 0.0625rem 1rem;
  }
}

.support-example__item-btn span {
  font-size: 0.875rem;
  font-weight: 500;
  color: #00A1E0;
}
@media screen and (max-width: 768px) {
  .support-example__item-btn span {
    font-size: 0.6875rem;
  }
}

/* グリッド用のスタイル */
.guide__content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.625rem 3.125rem;
}
@media screen and (max-width: 768px) {
  .guide__content {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.375rem 1.1875rem;
  }
}

.guide__content-item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 5;
  margin-bottom: 3.75rem;
}
@media screen and (max-width: 768px) {
  .guide__content-item {
    margin-bottom: 2.5rem;
  }
}

.card {
  grid-row: span 5;
  display: grid;
  grid-template-rows: subgrid;
  gap: 0.625rem;
}
@media screen and (max-width: 768px) {
  .card {
    gap: 0.625rem;
  }
}

.card__img {
  width: 100%;
  position: relative;
}

.card__img-wrap {
  width: 100%;
  position: relative;
}

.card__img img {
  aspect-ratio: 300/225;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: auto;
  border-radius: 0.625rem;
}
@media screen and (max-width: 768px) {
  .card__img img {
    aspect-ratio: 163/122.25;
    width: 100%;
  }
}

.card__label {
  position: absolute;
  bottom: 0;
  right: 0;
  margin: 0;
  color: #333333;
  font-size: 0.625rem;
  font-weight: 500;
  font-family: "Noto Sans JP", serif;
  line-height: 1;
  padding: 0.375rem 0.625rem;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .card__label {
    padding: 0.3125rem 0.625rem;
  }
}

.card__heading {
  margin-bottom: -0.5rem;
  margin-top: -0.3125rem;
}
@media screen and (max-width: 768px) {
  .card__heading {
    margin-bottom: -0.5rem;
  }
}

.card__heading span {
  padding-left: 0.4375rem;
  padding-right: 0.5625rem;
  padding-top: 0.125rem;
  padding-bottom: 0.125rem;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 2;
  font-family: "Poppins", serif;
  color: #535353;
  background-color: #E3E3E3;
}
@media screen and (max-width: 768px) {
  .card__heading span {
    font-size: 0.6875rem;
  }
}

.card__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.3125rem;
}
@media screen and (max-width: 768px) {
  .card__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 0;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.card__title--long {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.625rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.card__title-sub {
  position: relative;
  margin-right: 1.25rem;
  font-size: 0.8125rem;
  line-height: 1.2;
  font-weight: 700;
  font-family: "Noto Sans JP", serif;
  color: gray;
}
@media screen and (max-width: 768px) {
  .card__title-sub {
    margin-right: 0.625rem;
    margin-top: 0.3125rem;
  }
}

.card__title-sub::after {
  content: "";
  position: absolute;
  margin-left: 0.4375rem;
  width: 1px;
  height: 0.875rem;
  background-color: gray;
}
@media screen and (max-width: 768px) {
  .card__title-sub::after {
    margin-top: 0.125rem;
  }
}

.card__title-main {
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.647058;
  font-family: "Noto Sans JP", serif;
  color: #192636;
  letter-spacing: 0.03em;
  word-break: break-all;
  -webkit-hyphens: auto;
      -ms-hyphens: auto;
          hyphens: auto;
}
@media screen and (max-width: 768px) {
  .card__title-main {
    font-size: 0.9375rem;
  }
}

.card__text {
  margin-top: 0.4375rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.71428;
  font-family: "Noto Sans JP", serif;
  color: gray;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .card__text {
    margin-top: 0;
    font-size: 0.8125rem;
    line-height: 1.461538;
  }
}

.card__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 0.625rem;
}
@media screen and (max-width: 768px) {
  .card__bottom {
    margin-top: 0.375rem;
  }
}

.card__time {
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.6666667;
  color: gray;
}
@media screen and (max-width: 768px) {
  .card__time {
    font-size: 0.6875rem;
    letter-spacing: 0;
  }
}

.card__link {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 0.8125rem;
  padding-right: 0.8125rem;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  color: #192636;
  letter-spacing: 0;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 768px) {
  .card__link {
    font-size: 0.6875rem;
    padding-left: 0.25rem;
    padding-right: 0.5rem;
  }
}

.card__link:hover {
  opacity: 0.7;
}

.card__link:after {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-top: 1.2px solid #333333;
  border-right: 1.2px solid #333333;
  -webkit-transform: rotate(45deg) translateY(-50%);
          transform: rotate(45deg) translateY(-50%);
  position: absolute;
  top: 43%;
  right: 0;
  border-radius: 1px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 768px) {
  .card__link:after {
    width: 0.3125rem;
    height: 0.3125rem;
  }
}

.guide__icon-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 3.125rem;
}
@media screen and (max-width: 768px) {
  .guide__icon-items {
    gap: 2.1875rem 1.1875rem;
  }
}
@media screen and (max-width: 500px) {
  .guide__icon-items {
    width: 90%;
  }
}
@media screen and (max-width: 425px) {
  .guide__icon-items {
    width: 100%;
  }
}

.guide__icon-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25rem;
}
@media screen and (max-width: 768px) {
  .guide__icon-item {
    gap: 0.625rem;
  }
}

.guide__icon-item img {
  width: 4.5rem;
  height: 4.5rem;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .guide__icon-item img {
    width: 4.125rem;
    height: 4.125rem;
  }
}

.guide__icon-text {
  margin-top: 0.625rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0;
  font-family: "Noto Sans JP", serif;
  color: #192636;
}
@media screen and (max-width: 768px) {
  .guide__icon-text {
    margin-top: 0.3125rem;
    font-size: 0.875rem;
    line-height: 1.285714;
  }
}

.guide__icon-text span {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.428571;
  letter-spacing: 0;
  font-family: "Noto Sans JP", serif;
  color: #192636;
}
@media screen and (max-width: 768px) {
  .guide__icon-text span {
    font-size: 0.75rem;
    line-height: 1.285714;
  }
}

.case-detail {
  margin-top: 6.25rem;
}
@media screen and (max-width: 768px) {
  .case-detail {
    margin-top: 3.25rem;
  }
}

.case-detail__inner {
  padding-top: 5.5625rem;
  padding-left: 1.5625rem;
  padding-right: 1.5625rem;
  max-width: 54.625rem;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .case-detail__inner {
    padding-top: 2.125rem;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    max-width: 37.5rem;
  }
}

.case-detail__heading {
  width: 100%;
  /* aspect-ratio: 824 / 498; */
  position: relative;
  border-radius: 0.5rem;
  margin: 0 auto;
}

.case-detail__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 824 / 498;
}

.case-detail__eyecatch {
  aspect-ratio: 824 / 498;
  overflow: hidden;
  border-radius: 0.5rem;
}

.case-detail__eyecatch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


@media screen and (max-width: 768px) {
  .case-detail__heading {
    border-radius: 0.375rem;
    max-width: 37.5rem;
  }
}

.case-detail__badge-wrap {
  text-align: center;
  margin-top: 1rem; /* 画像との余白、お好みで */
}

.case-detail__badge {
  display: inline-block;
  padding: 0.25rem 0.625rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: #fff;
  background-color: #00A1E0;
  border-radius: 0.25rem;
  letter-spacing: 0.05em;
  margin-left: auto;
  margin-right: auto;
  margin-top: 4.375rem;
}
@media screen and (max-width: 768px) {
  .case-detail__badge {
    margin-top: 2.125rem;
  }
}
.support-example__badge {
  display: inline-block;
  padding: 0.15rem 0.85rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #333333;
  border: 1px solid #333333;
  border-radius: 0.2rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.525rem;
}
@media screen and (max-width: 768px) {
  .support-example__badge {
    margin-top: 0;
  }
}

.case-detail__heading-name {
  text-align: center;
  font-size: 1.375rem;
  line-height: 1.363636363;
  font-weight: 700;
  margin-top: 0.9375rem;
  color: #192636;
}
@media screen and (max-width: 768px) {
  .case-detail__heading-name {
    font-size: 1rem;
    line-height: 2.125;
    margin-top: 0.625rem;
  }
}

.case-detail__heading h2 {
  font-size: 1.875rem;
  line-height: 1.4;
  font-weight: 700;
  color: #192636;
  margin-top: 3.9375rem;
}
@media screen and (max-width: 768px) {
  .case-detail__heading h2 {
    font-size: 1.125rem;
    line-height: 1.66666;
    margin-top: 2.125rem;
  }
}

.case-detail__heading .case-detail__link {
  color: #00A1E0;
  text-decoration: underline;
}
.case-detail__heading-text {
  margin-top: 5rem;
}
@media screen and (max-width: 768px) {
  .case-detail__heading-text {
    margin-top: 3.25rem;
  }
}

.case-detail__heading-text p {
  font-size: 1.125rem;
  line-height: 1.875;
  font-weight: 500;
  color: #192636;
  margin-top: 1.875rem;
}
@media screen and (max-width: 768px) {
  .case-detail__heading-text p {
    font-size: 0.9375rem;
    line-height: 2;
    margin-top: 1.25rem;
  }
}

.case-detail__content.content {
  margin-top: 4.6875rem;
}
@media screen and (max-width: 768px) {
  .case-detail__content.content {
    margin-top: 3.75rem;
  }
}

.content__title {
  font-size: 1.375rem;
  line-height: 1.363636363;
  font-weight: 700;
  color: #192636;
}
@media screen and (max-width: 768px) {
  .content__title {
    font-size: 1rem;
    line-height: 1.875;
  }
}

.content__block-text {
  font-size: 1rem;
  line-height: 1.875;
  font-weight: 400;
  color: #192636;
  margin-top: 1.5rem;
}
@media screen and (max-width: 768px) {
  .content__block-text {
    font-size: 0.9375rem;
    line-height: 2;
    margin-top: 0.875rem;
  }
}

.content__block-text.content__block-text-bottom {
  margin-top: 5.625rem;
}

.content__block p span.content__bold {
  font-weight: 700;
}

.content__block p span.content__blue {
  color: #00A1E0;
}

.content__block-img {
  margin-top: 2.875rem;
  max-width: 43rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .content__block-img {
    max-width: 23rem;
    margin-top: 1.625rem;
  }
}

.content__block-img img {
  border-radius: 0.5rem;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .content__block-img img {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }
}

.content__block-img .content__block-img-caption {
  font-size: 0.875rem;
  line-height: 1.85714;
  font-weight: 400;
  color: #192636;
  margin-top: 0.4375rem;
}
@media screen and (max-width: 768px) {
  .content__block-img .content__block-img-caption {
    font-size: 0.625rem;
  }
}

.company-profile {
  margin-top: 5.625rem;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  border-top: 1px solid #707070;
  border-bottom: 1px solid #707070;
}
@media screen and (max-width: 768px) {
  .company-profile {
    margin-top: 3.5rem;
  }
}

.company-profile dl {
  padding-bottom: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.875;
}
@media screen and (max-width: 768px) {
  .company-profile dl {
    padding-bottom: 0.5rem;
    font-size: 0.9375rem;
    line-height: 2;
  }
}

.company-profile dl:first-child {
  padding-top: 0.5rem;
}
@media screen and (max-width: 768px) {
  .company-profile dl:first-child {
    padding-top: 0.5rem;
  }
}

.company-profile__blue-link {
  color: #00A1E0;
  text-decoration: underline;
}

.company-profile dt {
  max-width: 7.5rem;
  width: 100%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #00A1E0;
}
@media screen and (max-width: 768px) {
  .company-profile dt {
    max-width: 5.625rem;
  }
}

.company-profile dd {
  color: #192636;
}

.content__block-text.mt15 {
  margin-top: 0.9375rem;
}
@media screen and (max-width: 768px) {
  .content__block-text.mt15 {
    margin-top: 1.125rem;
  }
}

.other-cases__title {
  margin-top: 7.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .other-cases__title {
    margin-top: 3.75rem;
  }
}

.other-cases__title span {
  padding: 0 0.625rem;
  color: #00A1E0;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.8889;
}
@media screen and (max-width: 768px) {
  .other-cases__title span {
    font-size: 1rem;
  }
}

.other-cases__title::before,
.other-cases__title::after {
  content: "";
  height: 1px;
  width: calc(50% - 4.6875rem);
  background: #00A1E0;
}

.other-cases__title::before {
  left: 0;
}

.other-cases__title::after {
  right: 0;
}

.other-cases__list.support-example__list {
  width: 100%;
}

.other-cases__btn-wrap {
  margin-top: 4.3125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 768px) {
  .other-cases__btn-wrap {
    margin-top: 4.75rem;
  }
}

.other-cases__btn.btn2 {
  width: 10.75rem;
  height: 2.625rem;
}
@media screen and (max-width: 768px) {
  .other-cases__btn.btn2 {
    width: 6.875rem;
    height: 2.0625rem;
  }
}

.other-cases__btn.btn2 span {
  padding: 0.375rem 1.375rem 0.5rem 1rem;
}
@media screen and (max-width: 768px) {
  .other-cases__btn.btn2 span {
    font-size: 0.875rem;
    padding: 0.375rem 1.375rem 0.5rem 1rem;
  }
}
@media screen and (max-width: 370px) {
  .other-cases__btn.btn2 span {
    padding: 0.375rem 1rem 0.5rem 1rem;
  }
}

@media screen and (max-width: 768px) {
  .other-cases__btn.btn2::after {
    right: 0.625rem;
    width: 0.5rem;
    height: 0.5rem;
  }
}

.other-cases__contact.contact {
  padding-top: 7.5rem;
}
@media screen and (max-width: 768px) {
  .other-cases__contact.contact {
    padding-top: 5.6875rem;
  }
}

.case-studies {
  margin-top: 6.25rem;
}
@media screen and (max-width: 768px) {
  .case-studies {
    margin-top: 3.25rem;
  }
}

.case-studies__inner {
  padding-top: 5.3125rem;
  padding-left: 1.5625rem;
  padding-right: 1.5625rem;
  max-width: 75.625rem;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .case-studies__inner {
    padding-top: 2.5625rem;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    max-width: 37.5rem;
  }
}

.case-studies__title {
  text-align: center;
  font-size: 2.5rem;
  line-height: 1.2;
  font-weight: 700;
  color: #00A1E0;
}
@media screen and (max-width: 768px) {
  .case-studies__title {
    font-size: 1.25rem;
    line-height: 1.7;
  }
}


.case-studies__filter {
  text-align: center;
  margin-bottom: 1.25rem; /* 20px */
  margin-top: 0.875rem;
}

.filter-link {
  display: inline-block;
  background: #74CCEF;
  border: none;
  padding: 0.125rem 0.875rem; /* 4px 14px */
  margin: 0 0.3125rem; /* 5px */
  border-radius: 0.3125rem; /* 5px */
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  font-size: 0.75rem;
}

.filter-link.active {
  background-color: #00A1E0;
  color: #fff;
}



.case-studies-list {
  margin-top: 5.3125rem;
  margin-bottom: 11.5rem;
  display: grid;
  gap: 4.75rem;
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 768px) {
  .case-studies-list {
    margin-top: 2.9375rem;
    margin-bottom: 3.75rem;
    gap: 1.875rem;
    grid-template-columns: repeat(1, 1fr);
  }
}

.case-studies-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .case-studies-list__item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.case-studies-list__item-img {
  position: relative;
  width: 100%;
  aspect-ratio: 336 / 203;
  overflow: hidden;
  border-radius: 0.5rem;
}

.case-studies-list__item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media screen and (max-width: 768px) {
  .case-studies-list__item-img {
    width: 8.375rem;
    aspect-ratio: 134 / 82;
    border-radius: 0.375rem;
  }
}

.card__tag.md-none {
  position: absolute;
  bottom: 0.5rem;
  left: 0.5rem;
  padding: 0.25rem 0.625rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: #fff;
  background-color: #00A1E0;
  border-radius: 0.25rem;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 768px) {
  .card__tag.md-none {
    display: none;
  }
}

.card__tag.md-show {
  display: none;
}
@media screen and (max-width: 768px) {
  .card__tag.md-show {
    display: inline-block;
    margin-bottom: 0.25rem;
    padding: 0.1rem 0.3rem;
    font-size: 0.5rem;
    font-weight: 500;
    color: #fff;
    background-color: #00A1E0;
    border-radius: 0.25rem;
    letter-spacing: 0.05em;
  }
}

@media screen and (max-width: 768px) {
  .case-studies-list__item-body {
    padding-left: 0.625rem;
  }
}

.case-studies-list__item-content {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding-top: 1.1875rem;
}
@media screen and (max-width: 768px) {
  .case-studies-list__item-content {
    padding-top: 0;
  }
}

.case-studies-list__item-title {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5555555;
  color: #333333;
}
@media screen and (max-width: 768px) {
  .case-studies-list__item-title {
    font-size: 0.9375rem;
    line-height: 1.46666666;
  }
}

.case-studies-list__item-text {
  margin-top: 0.75rem;
  font-size: 1rem;
  line-height: 1.875;
  color: #192636;
}
@media screen and (max-width: 768px) {
  .case-studies-list__item-text {
    font-size: 0.75rem;
    line-height: 1.66666666;
  }
}

.case-studies-list__item-meta {
  margin-top: auto;
  padding-top: 1.0625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .case-studies-list__item-meta {
    padding-top: 1.875rem;
  }
}

.case-studies-list__item-category {
  padding: 0.21875rem 0.78125rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
  color: #00A1E0;
  background-color: #FFFFFF;
  border: 1px solid #00A1E0;
  border-radius: 0.8125rem;
}
@media screen and (max-width: 768px) {
  .case-studies-list__item-category {
    font-size: 0.6875rem;
  }
}

.case-studies-list__item-meta li + li {
  margin-left: 0.5625rem;
}

.comparison {
  margin-top: 4.375rem;
}
@media screen and (max-width: 768px) {
  .comparison {
    margin-top: 4.375rem;
  }
}

.comparison__inner {
  padding-top: 3.125rem;
  padding-left: 1.5625rem;
  padding-right: 1.5625rem;
  max-width: 56.25rem;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .comparison__inner {
    padding-top: 3.125rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    max-width: 37.5rem;
  }
}

.comparison__main-title {
  font-size: 2.25rem;
  line-height: 1.875;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: blue;
  font-family: "Poppins", serif;
}
@media screen and (max-width: 768px) {
  .comparison__main-title {
    font-size: 1.875rem;
    line-height: 1.5;
  }
}

.comparison__main-text {
  margin-top: 0.625rem;
  font-size: 1.25rem;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #192636;
  font-family: "Poppins", serif;
}
@media screen and (max-width: 768px) {
  .comparison__main-text {
    font-size: 1.125rem;
    line-height: 1.5;
  }
}

.comparison__container:first-child {
  margin-top: 3.75rem;
}
@media screen and (max-width: 768px) {
  .comparison__container:first-child {
    margin-top: 3.125rem;
  }
}

.comparison__container:not(:first-child) {
  margin-top: 3.125rem;
}
@media screen and (max-width: 768px) {
  .comparison__container:not(:first-child) {
    margin-top: 2.5rem;
  }
}

.comparison__title {
  font-size: 1.625rem;
  line-height: 1.875;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: blue;
  font-family: "Poppins", serif;
}
@media screen and (max-width: 768px) {
  .comparison__title {
    font-size: 1.25rem;
    line-height: 1.5;
  }
}

.comparison__text {
  margin-top: 0.625rem;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #192636;
  font-family: "Poppins", serif;
}
@media screen and (max-width: 768px) {
  .comparison__text {
    font-size: 0.875rem;
    line-height: 1.5;
  }
}

.comparison-table {
  margin-top: 3.125rem;
  border: 1px solid #192636;
  border-radius: 0.625rem;
}
@media screen and (max-width: 768px) {
  .comparison-table {
    margin-top: 2.5rem;
  }
}

.comparison-table__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.comparison-table__item {
  width: 50%;
  padding-top: 1.25rem;
  padding-bottom: 1.875rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  border-bottom: 1px solid #192636;
}

.comparison-table__item + .comparison-table__item {
  border-left: 1px solid #192636;
}

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

.comparison-table__item-img img {
  width: 5rem;
  height: 2.5rem;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .comparison-table__item-img img {
    width: 3.75rem;
    height: 1.875rem;
  }
}

.comparison-table__item-img p {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: 0.05em;
  font-family: "Poppins", serif;
  margin-left: 1.25rem;
}
@media screen and (max-width: 768px) {
  .comparison-table__item-img p {
    font-size: 0.875rem;
    line-height: 1.5;
  }
}

.comparison-table__item-img span {
  color: #192636;
}

.comparison-table__item-text {
  font-size: 1.125rem;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #192636;
  font-family: "Poppins", serif;
  margin-top: 1.25rem;
}
@media screen and (max-width: 768px) {
  .comparison-table__item-text {
    font-size: 1rem;
    line-height: 1.5;
    margin-top: 0.9375rem;
  }
}

.comparison-table__content {
  margin-top: 1.875rem;
  text-indent: -1rem;
  padding-left: 1rem;
}
@media screen and (max-width: 768px) {
  .comparison-table__content {
    margin-top: 1.25rem;
  }
}

.comparison-table__content-heading--blue,
.comparison-table__content-heading--red {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: 0.05em;
  font-family: "Poppins", serif;
  position: relative;
  padding-left: 1.5625rem;
  margin-bottom: 0.625rem;
}

.comparison-table__content-heading--blue {
  color: blue;
}

.comparison-table__content-heading--red {
  color: red;
}

.comparison-table__content-heading--blue::before,
.comparison-table__content-heading--red::before {
  position: absolute;
  content: "";
  left: 0%;
  top: 55%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 0.9375rem;
  height: 0.9375rem;
}

.comparison-table__content-heading--blue::before {
  background-color: blue;
  -webkit-clip-path: polygon(0 100%, 50% 0, 100% 100%);
          clip-path: polygon(0 100%, 50% 0, 100% 100%);
}

.comparison-table__content-heading--red::before {
  background-color: red;
  -webkit-clip-path: polygon(0 0, 50% 100%, 100% 0);
          clip-path: polygon(0 0, 50% 100%, 100% 0);
}

.comparison-table__content p {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #192636;
  font-family: "Poppins", serif;
}
@media screen and (max-width: 768px) {
  .comparison-table__content p {
    font-size: 0.875rem;
    line-height: 1.5;
  }
}

.comparison-table__bottom {
  padding-top: 1.25rem;
  padding-bottom: 1.875rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  margin-right: auto;
  margin-left: auto;
  width: 80%;
}
@media screen and (max-width: 768px) {
  .comparison-table__bottom {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    width: 100%;
  }
}

.comparison-table__bottom-text {
  font-size: 1.125rem;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #192636;
  font-family: "Poppins", serif;
  position: relative;
  padding-left: 0.9375rem;
}
@media screen and (max-width: 768px) {
  .comparison-table__bottom-text {
    font-size: 1rem;
    line-height: 1.5;
  }
}

.comparison-table__bottom-text::before {
  position: absolute;
  content: "";
  left: 0%;
  top: 55%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 0.9375rem;
  height: 0.9375rem;
  background-color: blue;
  -webkit-clip-path: polygon(0 0, 0 100%, 100% 50%);
          clip-path: polygon(0 0, 0 100%, 100% 50%);
}

.faq__container {
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .faq__container {
    margin-top: 1.875rem;
  }
}

.faq-list__title {
  font-size: 1.25rem;
  line-height: 1.875;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: blue;
  font-family: "Poppins", serif;
}
@media screen and (max-width: 768px) {
  .faq-list__title {
    font-size: 1.125rem;
    line-height: 1.5;
  }
}

.faq-list {
  margin-top: 0.625rem;
}
@media screen and (max-width: 768px) {
  .faq-list {
    margin-top: 0.625rem;
  }
}

.faq-list__item {
  background-color: #FFFFFF;
}

.faq-list__item-question {
  position: relative;
  padding: 0.875rem 3.75rem 0.875rem 0;
  font-size: 1.125rem;
  cursor: pointer;
  border-bottom: solid 1px #192636;
}
@media screen and (max-width: 768px) {
  .faq-list__item-question {
    padding: 0.75rem 2.5rem 0.75rem 0;
    font-size: 0.9375rem;
  }
}

.faq-list__item:first-child .faq-list__item-question {
  border-top: solid 1px #192636;
}

.faq-list__item-question::before,
.faq-list__item-question::after {
  content: "";
  position: absolute;
  right: 1.25rem;
  top: 50%;
  width: 1.25rem;
  height: 0.1875rem;
  background-color: blue;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .faq-list__item-question::before,
  .faq-list__item-question::after {
    top: 1.3125rem;
    width: 1.125rem;
  }
}

.faq-list__item-question::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.faq-list__item-question.is-open::after {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}

.faq-list__item-question span {
  margin-right: 1.25rem;
  display: inline-block;
  color: #F6D970;
}

.faq-list__item-answer {
  display: none;
  padding: 1.25rem 2.5rem 0.9375rem 0;
  font-size: 1.125rem;
  border-bottom: solid 1px #192636;
}
@media screen and (max-width: 768px) {
  .faq-list__item-answer {
    padding: 0.9375rem 1.875rem 0.9375rem 0;
    font-size: 0.9375rem;
  }
}

.faq-list__item-answer span {
  margin-right: 1.25rem;
  display: inline-block;
  color: blue;
}

.training-services__item-text--bold {
  font-size: 1.375rem;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #192636;
  font-family: "Poppins", serif;
  margin-top: 0.625rem;
}
@media screen and (max-width: 768px) {
  .training-services__item-text--bold {
    font-size: 1.125rem;
    line-height: 1.6666666;
    margin-top: 0.625rem;
  }
}

.training-services__additional {
  margin-top: 3.125rem;
}
@media screen and (max-width: 768px) {
  .training-services__additional {
    margin-top: 2.5rem;
  }
}

.training-services__additional-title {
  font-size: 1.375rem;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: blue;
  font-family: "Poppins", serif;
  margin-top: 0.625rem;
}
@media screen and (max-width: 768px) {
  .training-services__additional-title {
    font-size: 1.125rem;
    line-height: 1.6666666;
    margin-top: 0.625rem;
  }
}

.border-bottom {
  padding-bottom: 1.25rem;
  border-bottom: 1px solid gray;
}
.faq {
  margin-top: 6.25rem;
}
@media screen and (max-width: 768px) {
  .faq {
    margin-top: 3.25rem;
  }
}

.faq__inner {
  padding-top: 5.5625rem;
}
@media screen and (max-width: 768px) {
  .faq__inner {
    padding-top: 2.5625rem;
  }
}

.faq__title {
  text-align: center;
  font-size: 2.5rem;
  line-height: 1.2;
  font-weight: 700;
  color: #00A1E0;
}
@media screen and (max-width: 768px) {
  .faq__title {
    font-size: 1.25rem;
    line-height: 1.7;
  }
}

.faq-list {
  margin-top: 4.3125rem;
  border-bottom: solid 1px #B4B4B4;
}
@media screen and (max-width: 768px) {
  .faq-list {
    margin-top: 0.625rem;
  }
}

.faq-list__item {
  padding-top: 1.25rem;
  padding-bottom: 1.875rem;
  border-top: solid 1px #B4B4B4;
}
@media screen and (max-width: 768px) {
  .faq-list__item {
    padding-bottom: 1.25rem;
  }
}

.faq-list__question {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .faq-list__question {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.faq-list__icon {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  font-size: 0.9375rem;
  font-weight: 700;
  text-align: center;
  line-height: 2rem;
  color: #FFFFFF;
  font-family: "Poppins", serif;
  margin-right: 1rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.faq-list__icon--q {
  background-color: #00A1E0;
}

.faq-list__icon--a {
  background-color: #192636;
}

.faq-list__title {
  font-size: 1.375rem;
  line-height: 1.3636363636;
  font-weight: 700;
  color: #00A1E0;
  font-family: "Noto Sans JP", serif;
}
@media screen and (max-width: 768px) {
  .faq-list__title {
    font-size: 0.9375rem;
    line-height: 2;
  }
}

.faq-list__answer {
  margin-top: 1.5625rem;
}
@media screen and (max-width: 768px) {
  .faq-list__answer {
    margin-top: 1.25rem;
  }
}

.faq-list__answer-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
.faq-list__answer-bottom {
  margin-left: 2.875rem;
  margin-top: 0.3125rem;
}
.faq-list__text {
  font-size: 1rem;
  line-height: 1.875;
  font-weight: 400;
  color: #192636;
}
@media screen and (max-width: 768px) {
  .faq-list__text {
    font-size: 0.9375rem;
    line-height: 2;
  }
}

.faq-list__link {
  color: #00A1E0;
  text-decoration: none;
  -webkit-transition: color 0.2s, background-color 0.2s;
  transition: color 0.2s, background-color 0.2s;
  position: relative;
  font-size: 1.0625rem;
  font-weight: 500;
  color: #00A1E0;
}
.faq-list__link:focus {
  outline: none;
}
.faq-list__link:hover {
  color: #006790;
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .faq-list__link {
    font-size: 0.9375rem;
  }
}

.faq-list__link::after {
  position: absolute;
  top: 0.125rem;
  bottom: 0;
  right: -0.75rem;
  margin: auto;
  content: "";
  vertical-align: middle;
  width: 0.625rem;
  height: 0.625rem;
  border-top: 0.125rem solid #00A1E0;
  border-right: 0.125rem solid #00A1E0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: none;
  transition: none;
}
@media screen and (max-width: 768px) {
  .faq-list__link::after {
    right: -0.625rem;
    width: 0.5rem;
    height: 0.5rem;
  }
}

.faq-list__link:hover::after {
  border-top: 0.125rem solid #006790;
  border-right: 0.125rem solid #006790;
  -webkit-transition: none;
  transition: none;
}

.faq-list__contact {
  color: #00A1E0;
  text-decoration: none;
}

.faq-list__contact:hover {
  text-decoration: underline;
  opacity: 1;
}

.faq-table {
  margin-top: 2.8125rem;
  margin-bottom: 1.625rem;
  border: 1px solid #CBCBCB;
  border-radius: 0.75rem;
  margin-left: 2.875rem;
}
@media screen and (max-width: 768px) {
  .faq-table {
    margin-top: 2.5rem;
  }
}

.faq-table__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .faq-table__list {
    display: block;
  }
}

.faq-table__item {
  width: 50%;
  padding-top: 2.3125rem;
  padding-bottom: 2.875rem;
  padding-left: 1.6875rem;
  padding-right: 1.6875rem;
  border-bottom: 1px solid #CBCBCB;
}
@media screen and (max-width: 768px) {
  .faq-table__item {
    width: 100%;
    padding-top: 1.25rem;
    padding-bottom: 0.625rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}

.faq-table__item + .faq-table__item {
  border-left: 1px solid #CBCBCB;
}
@media screen and (max-width: 768px) {
  .faq-table__item + .faq-table__item {
    border-left: none;
  }
}

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

.faq-table__item-img img {
  width: 7.5rem;
  height: 5.1875rem;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .faq-table__item-img img {
    width: 5.8125rem;
    height: 4rem;
  }
}

.faq-table__item-img p {
  font-size: 1.25rem;
  line-height: 1.5;
  font-weight: 700;
  margin-left: 1.25rem;
}
@media screen and (max-width: 768px) {
  .faq-table__item-img p {
    font-size: 1.25rem;
  }
}

.faq-table__item-img span {
  color: #192636;
  font-size: 1rem;
  font-weight: 500;
}

.faq-table__item-text {
  font-size: 1.0625rem;
  line-height: 1.88235;
  font-weight: 500;
  color: #333333;
  margin-top: 2.5rem;
  margin-bottom: 2.9375rem;
}
@media screen and (max-width: 768px) {
  .faq-table__item-text {
    font-size: 0.9375rem;
    line-height: 2;
    margin-top: 0.625rem;
    margin-bottom: 1.375rem;
  }
}

.faq-table__content {
  margin-top: 0.625rem;
  margin-bottom: 1.6875rem;
  text-indent: -1rem;
  padding-left: 1rem;
}
@media screen and (max-width: 768px) {
  .faq-table__content {
    margin-top: 0.3125rem;
    margin-bottom: 1.25rem;
  }
}

.faq-table__content-heading span {
  display: inline-block;
  font-size: 0.875rem;
  text-align: center;
  line-height: 1;
  font-weight: 700;
  padding: 0.125rem 0.125rem;
  border: 1px solid #333333;
  width: 5.1875rem;
  height: 1.4375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 0.75rem;
}
@media screen and (max-width: 768px) {
  .faq-table__content-heading span {
    width: 4.5625rem;
    font-size: 0.75rem;
  }
}

.faq-table__content p {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
  color: #333333;
  margin-top: 0.625rem;
}
@media screen and (max-width: 768px) {
  .faq-table__content p {
    font-size: 0.9375rem;
    line-height: 1.6;
  }
}

.faq-table__bottom {
  padding-top: 2.1875rem;
  padding-bottom: 2.6875rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  margin-right: auto;
  margin-left: auto;
  width: 68%;
}
@media screen and (max-width: 768px) {
  .faq-table__bottom {
    padding-top: 0.8125rem;
    padding-bottom: 1.4375rem;
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
    width: 100%;
  }
}

.faq-table__bottom-text {
  font-size: 1.0625rem;
  line-height: 1.88235394;
  font-weight: 500;
  color: #333333;
  position: relative;
  padding-left: 0.9375rem;
}
@media screen and (max-width: 768px) {
  .faq-table__bottom-text {
    font-size: 0.9375rem;
    line-height: 2;
    padding-left: 0.625rem;
  }
}

.faq-table__bottom-text::before {
  position: absolute;
  content: "";
  left: 0%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 0.8125rem;
  height: 0.9375rem;
  background-color: #00A1E0;
  -webkit-clip-path: polygon(0 0, 0 100%, 100% 50%);
          clip-path: polygon(0 0, 0 100%, 100% 50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .faq-table__bottom-text::before {
    width: 0.625rem;
    height: 0.8125rem;
  }
}

.support-menu {
  margin-top: 6.25rem;
}
@media screen and (max-width: 768px) {
  .support-menu {
    margin-top: 3.25rem;
  }
}

.support-menu__inner {
  padding-top: 5.625rem;
}
@media screen and (max-width: 768px) {
  .support-menu__inner {
    padding-top: 2.5625rem;
  }
}

.support-menu__title {
  text-align: center;
  font-size: 2.5rem;
  line-height: 1.2;
  font-weight: 700;
  color: #00A1E0;
}
@media screen and (max-width: 768px) {
  .support-menu__title {
    font-size: 1.25rem;
    line-height: 1.7;
  }
}

.support-menu__img {
  border-radius: 0.75rem;
  aspect-ratio: 992/419;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  margin-top: 4.375rem;
}
@media screen and (max-width: 768px) {
  .support-menu__img {
    margin-top: 2.5625rem;
  }
}

.support-menu__text {
  margin-top: 1.0625rem;
  font-size: 1.125rem;
  line-height: 2.11111;
  font-weight: 500;
  color: #192636;
  width: 83%;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .support-menu__text {
    font-size: 0.9375rem;
    line-height: 2;
    width: 100%;
  }
}

.support-menu-list {
  margin-top: 6.5625rem;
  padding-bottom: 3.125rem;
}
@media screen and (max-width: 768px) {
  .support-menu-list {
    margin-top: 3.375rem;
    padding-bottom: 0.3125rem;
  }
}

.support-menu-list__item-title {
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.2;
  color: #00A1E0;
}
@media screen and (max-width: 768px) {
  .support-menu-list__item-title {
    font-size: 1.125rem;
    line-height: 2;
    margin-top: 0.625rem;
  }
}

.support-menu-list__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .support-menu-list__container {
    display: block;
  }
}

.support-menu-list__item + .support-menu-list__item {
  margin-top: 4.375rem;
}
@media screen and (max-width: 768px) {
  .support-menu-list__item + .support-menu-list__item {
    margin-top: 2.3125rem;
  }
}

.support-menu-list__item-img {
  max-width: 29.25rem;
  width: 100%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .support-menu-list__item-img {
    max-width: 37.5rem;
  }
}

.support-menu-list__item-img img {
  width: 100%;
  aspect-ratio: 468/244;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.5rem;
}
@media screen and (max-width: 768px) {
  .support-menu-list__item-img img {
    aspect-ratio: 365/190;
  }
}

.support-menu-list__item-content {
  margin-left: 1.75rem;
}
@media screen and (max-width: 768px) {
  .support-menu-list__item-content {
    margin-left: 0;
  }
}

.support-menu-list__text {
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.764705;
  color: #192636;
  margin-top: 0.875rem;
}
@media screen and (max-width: 768px) {
  .support-menu-list__text {
    font-size: 0.9375rem;
    line-height: 2;
    margin-top: 1.25rem;
  }
}

.support-menu-list__btn-wrap {
  margin-top: 1.0625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .support-menu-list__btn-wrap {
    margin-top: 1.0625rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media screen and (max-width: 768px) {
  .support-menu-list__btn.btn2 {
    width: 6.875rem;
    height: 2.0625rem;
    font-size: 0.875rem;
  }
}

@media screen and (max-width: 768px) {
  .support-menu-list__btn.btn2 span {
    font-size: 0.875rem;
    padding: 0.3125rem 0.5rem 0.5rem;
  }
}

@media screen and (max-width: 768px) {
  .support-menu-list__btn.btn2::after {
    width: 0.5rem;
    height: 0.5rem;
  }
}

.support-services {
  padding-top: 5.0625rem;
}
@media screen and (max-width: 768px) {
  .support-services {
    padding-top: 3.125rem;
  }
}

.support-services__inner .support-services__title:not(:first-child) {
  margin-top: 5.0625rem;
}
@media screen and (max-width: 768px) {
  .support-services__inner .support-services__title:not(:first-child) {
    margin-top: 3.125rem;
  }
}

.support-services__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.support-services__title::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 2px;
  background-color: #00A1E0;
  margin-top: 0.625rem;
}
@media screen and (max-width: 768px) {
  .support-services__title::after {
    height: 1px;
    margin-top: 0.8125rem;
  }
}

.support-services-list {
  margin-top: 1.5rem;
}
@media screen and (max-width: 768px) {
  .support-services-list {
    margin-top: 1.25rem;
  }
}

.support-services-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .support-services-list__item {
    display: block;
  }
}

.support-services-list__item + .support-services-list__item {
  margin-top: 2.9375rem;
}
@media screen and (max-width: 768px) {
  .support-services-list__item + .support-services-list__item {
    margin-top: 2.125rem;
  }
}

.support-services-list__item-img {
  max-width: 20.4375rem;
  width: 100%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .support-services-list__item-img {
    max-width: 37.5rem;
    width: 74.86338%;
    margin-right: auto;
    margin-left: auto;
  }
}

.support-services-list__item-img img {
  width: 100%;
  aspect-ratio: 330/170;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.5rem;
}
@media screen and (max-width: 768px) {
  .support-services-list__item-img img {
    aspect-ratio: 274/140;
    border-radius: 0.375rem;
    margin-right: auto;
    margin-left: auto;
  }
}

.support-services-list__item-text {
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.846153;
  color: #566476;
  margin-top: 0.625rem;
  margin-bottom: 2.9375rem;
}
@media screen and (max-width: 768px) {
  .support-services-list__item-text {
    font-size: 0.625rem;
    line-height: 1.5;
    margin-top: 0.625rem;
    margin-bottom: 2.125rem;
  }
}

.support-services-list__item-content {
  margin-left: 2.1875rem;
}
@media screen and (max-width: 768px) {
  .support-services-list__item-content {
    margin-left: 0;
  }
}

.support-services-list__title {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.9;
  color: #00A1E0;
}
@media screen and (max-width: 768px) {
  .support-services-list__title {
    margin-top: 0.8125rem;
  }
}

.support-services-list__text {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.875;
  color: #192636;
}
@media screen and (max-width: 768px) {
  .support-services-list__text {
    font-size: 0.9375rem;
    margin-top: 1.0625rem;
    line-height: 2;
    margin-right: auto;
    margin-left: auto;
  }
}

.support-services-list__text.mt10 {
  margin-top: 0.625rem;
}
@media screen and (max-width: 768px) {
  .support-services-list__text.mt10 {
    margin-top: 0.5rem;
  }
}

.member {
  padding-top: 4.875rem;
}
@media screen and (max-width: 768px) {
  .member {
    padding-top: 2.8125rem;
  }
}

.member__title {
  text-align: center;
  line-height: 1;
  font-size: 1.875rem;
  font-weight: 700;
  color: #00A1E0;
}
@media screen and (max-width: 768px) {
  .member__title {
    font-size: 1.125rem;
  }
}

.member__title::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 2px;
  background-color: #00A1E0;
  margin-top: 1.125rem;
}
@media screen and (max-width: 768px) {
  .member__title::after {
    height: 1px;
    margin-top: 0.8125rem;
  }
}

.member-list {
  margin-top: 4rem;
  display: grid;
  row-gap: 4.1875rem;
  -webkit-column-gap: 5.125rem;
     -moz-column-gap: 5.125rem;
          column-gap: 5.125rem;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 768px) {
  .member-list {
    margin-top: 1.625rem;
    gap: 2.75rem;
    grid-template-columns: repeat(1, 1fr);
  }
}

.member-list__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.member-list__heading-img {
  max-width: 9.5rem;
}
@media screen and (max-width: 768px) {
  .member-list__heading-img {
    max-width: 5.4375rem;
  }
}

.member-list__heading-img img {
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}

.member-list__heading-content {
  margin-left: 1rem;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  width: calc(100% - 9.5rem);
}
@media screen and (max-width: 768px) {
  .member-list__heading-content {
    width: calc(100% - 5.4375rem);
  }
}

.member-list__heading-name_en {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1;
  color: #192636;
}
@media screen and (max-width: 768px) {
  .member-list__heading-name_en {
    font-size: 0.6875rem;
  }
}

.member-list__heading-name_ja {
  font-size: 1.5rem;
  line-height: 1.25;
  color: #192636;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .member-list__heading-name_ja {
    font-size: 1rem;
  }
}

.member-list__heading-text {
  margin-top: 0.8125rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  color: #192636;
}
@media screen and (max-width: 768px) {
  .member-list__heading-text {
    margin-top: 0.5625rem;
    font-size: 0.8125rem;
    line-height: 1.5385;
  }
}

.member-list__item-text {
  margin-top: 3.4375rem;
  font-size: 1rem;
  line-height: 1.875;
  font-weight: 400;
  color: #192636;
}
@media screen and (max-width: 768px) {
  .member-list__item-text {
    margin-top: 1.4375rem;
    font-size: 0.9375rem;
    line-height: 2;
  }
}

.sub-example {
  padding-top: 5.3125rem;
  padding-bottom: 4.8125rem;
}
@media screen and (max-width: 768px) {
  .sub-example {
    padding-top: 5rem;
    padding-bottom: 4.375rem;
  }
}

.sub-example__inner {
  padding-left: 1.5625rem;
  padding-right: 1.5625rem;
  max-width: 68.75rem;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .sub-example__inner {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    max-width: 37.5rem;
  }
}

.sub-example-list {
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .sub-example-list {
    margin-top: 2.5rem;
  }
}

.sub-example-list__item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .sub-example-list__item a {
    display: block;
  }
}

.sub-example-list__item + .sub-example-list__item {
  margin-top: 3.125rem;
}

.sub-example-list__item-img {
  max-width: 26.875rem;
  width: 100%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .sub-example-list__item-img {
    max-width: 37.5rem;
  }
}

.sub-example-list__item-img img {
  width: 100%;
  aspect-ratio: 1.6/1;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.75rem;
}
@media screen and (max-width: 768px) {
  .sub-example-list__item-img img {
    aspect-ratio: 1.6/1;
  }
}

.sub-example-list__item-content {
  margin-left: 3.125rem;
}
@media screen and (max-width: 768px) {
  .sub-example-list__item-content {
    margin-left: 1.25rem;
  }
}

.sub-example-list__title {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.5333333;
  color: #00A1E0;
}
@media screen and (max-width: 768px) {
  .sub-example-list__title {
    font-size: 1rem;
    line-height: 1.6666666;
  }
}

.sub-example-list__text {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6875;
  color: #192636;
  margin-top: 1.875rem;
}
@media screen and (max-width: 768px) {
  .sub-example-list__text {
    font-size: 0.875rem;
    line-height: 1.71428;
    margin-top: 1.25rem;
  }
}

.sub-example-list__item-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.5333333;
  color: #192636;
  margin-bottom: 0.625rem;
}
@media screen and (max-width: 768px) {
  .sub-example-list__item-content h3 {
    font-size: 1rem;
    line-height: 1.6666666;
  }
}

.salesforce {
  margin-top: 6.25rem;
}
@media screen and (max-width: 768px) {
  .salesforce {
    margin-top: 3.25rem;
  }
}

.salesforce__inner {
  padding-top: 5.5625rem;
}
@media screen and (max-width: 768px) {
  .salesforce__inner {
    padding-top: 2.5625rem;
  }
}

.salesforce__title {
  text-align: center;
  font-size: 2.5rem;
  line-height: 1.2;
  font-weight: 700;
  color: #00A1E0;
}
@media screen and (max-width: 768px) {
  .salesforce__title {
    font-size: 1.25rem;
    line-height: 1.7;
  }
}

.salesforce__img {
  aspect-ratio: 227/159;
  -o-object-fit: cover;
     object-fit: cover;
  margin-right: auto;
  margin-left: auto;
  max-width: 17.125rem;
  width: 100%;
  margin-top: 1.6875rem;
}
@media screen and (max-width: 768px) {
  .salesforce__img {
    aspect-ratio: 185/129;
    max-width: 11.5625rem;
    margin-top: 2.5rem;
  }
}

.salesforce__text {
  margin-top: 4.5625rem;
  text-align: center;
  font-size: 1.125rem;
  line-height: 2.111111;
  font-weight: 500;
  color: #192636;
}
@media screen and (max-width: 768px) {
  .salesforce__text {
    margin-top: 3.5625rem;
    font-size: 0.9375rem;
    line-height: 2;
  }
}

.salesforce-benefits {
  margin-top: 10.9375rem;
}
@media screen and (max-width: 768px) {
  .salesforce-benefits {
    margin-top: 4.6875rem;
  }
}

@media screen and (max-width: 768px) {
  .salesforce-benefits__inner.inner {
    padding-left: 0;
    padding-right: 0;
  }
}

.salesforce-benefits__title {
  font-size: 1.875rem;
  line-height: 1.4;
  font-weight: 700;
  color: #00A1E0;
}
@media screen and (max-width: 768px) {
  .salesforce-benefits__title {
    font-size: 1rem;
    padding-left: 0.75rem;
  }
}

.salesforce-benefits__list {
  margin-top: 1rem;
  background-color: #D8F4FF;
  padding: 3rem 5.25rem 5.25rem;
  border-radius: 0.5rem;
}
@media screen and (max-width: 768px) {
  .salesforce-benefits__list {
    margin-top: 0.75rem;
    padding: 2.0625rem 0.75rem 2.125rem;
  }
}

.salesforce-benefits__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .salesforce-benefits__item {
    display: block;
  }
}

.salesforce-benefits__item + .salesforce-benefits__item {
  margin-top: 3.25rem;
}
@media screen and (max-width: 768px) {
  .salesforce-benefits__item + .salesforce-benefits__item {
    margin-top: 2.6875rem;
  }
}

.salesforce-benefits__item-img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .salesforce-benefits__item-img {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.salesforce-benefits__item-img img {
  aspect-ratio: 106/77;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  max-width: 6.625rem;
}
@media screen and (max-width: 768px) {
  .salesforce-benefits__item-img img {
    max-width: 3.3125rem;
    aspect-ratio: 53/39;
  }
}

.salesforce__item-circle span {
  position: absolute;
  left: 50%;
  top: 30%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 1.875rem;
  font-weight: 700;
  color: #00A1E0;
  z-index: 1;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .salesforce__item-circle span {
    font-size: 1.25rem;
    left: 1.5625rem;
    top: 50%;
  }
}

.salesforce-benefits__item-content {
  margin-left: 0.75rem;
}
@media screen and (max-width: 768px) {
  .salesforce-benefits__item-content {
    margin-left: 0;
  }
}

.salesforce-benefits__item-title {
  font-size: 1.375rem;
  line-height: 1.36363636;
  font-weight: 700;
  color: #00A1E0;
}
@media screen and (max-width: 768px) {
  .salesforce-benefits__item-title {
    font-size: 1rem;
    line-height: 1.5;
    margin-left: 0.5625rem;
  }
}

.salesforce-benefits__item-text {
  margin-top: 0.375rem;
  font-size: 1rem;
  line-height: 1.875;
  font-weight: 400;
  color: #192636;
}
@media screen and (max-width: 768px) {
  .salesforce-benefits__item-text {
    margin-top: 1.1875rem;
    font-size: 0.9375rem;
    line-height: 2;
  }
}

.salesforce-features {
  margin-top: 5.4375rem;
  padding-bottom: 9.625rem;
}
@media screen and (max-width: 768px) {
  .salesforce-features {
    margin-top: 3.5rem;
    padding-bottom: 2.6875rem;
  }
}

.salesforce-features__title {
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.4;
  color: #00A1E0;
  margin-bottom: 1.125rem;
}
@media screen and (max-width: 768px) {
  .salesforce-features__title {
    font-size: 1rem;
    margin-bottom: 0.625rem;
  }
}

.salesforce-features__item:not(:first-child) {
  margin-top: 6rem;
}
@media screen and (max-width: 768px) {
  .salesforce-features__item:not(:first-child) {
    margin-top: 3.4375rem;
  }
}

.salesforce-features__item-title {
  background-color: #00A1E0;
  border-radius: 0.5rem;
  color: #FFFFFF;
  padding: 0.9375rem 1.0625rem;
  font-size: 1.375rem;
  line-height: 1;
  font-weight: 700;
  color: #FFFFFF;
}
@media screen and (max-width: 768px) {
  .salesforce-features__item-title {
    font-size: 1rem;
    padding: 0.78125rem 1rem;
    border-radius: 0.375rem;
  }
}

.salesforce-features__item-subtitle {
  margin-top: 1.125rem;
  font-size: 1.125rem;
  line-height: 2.111111;
  font-weight: 500;
  color: #192636;
}
@media screen and (max-width: 768px) {
  .salesforce-features__item-subtitle {
    margin-top: 1.0625rem;
    font-size: 0.9375rem;
    line-height: 2;
  }
}

.salesforce-features__container-title {
  margin-top: 1.6875rem;
  font-size: 1.375rem;
  line-height: 1.875;
  font-weight: 700;
  color: #192636;
}
@media screen and (max-width: 768px) {
  .salesforce-features__container-title {
    margin-top: 2.1875rem;
    font-size: 1rem;
    line-height: 1.875;
  }
}

.salesforce-features__container-title.mt67 {
  margin-top: 4.1875rem;
}
.salesforce-features__card-wrap {
  margin-top: 3.75rem;
  margin-bottom: 0.9375rem;
  display: grid;
  row-gap: 1.375rem;
  -webkit-column-gap: 3.125rem;
     -moz-column-gap: 3.125rem;
          column-gap: 3.125rem;
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 768px) {
  .salesforce-features__card-wrap {
    margin-top: 1.8125rem;
    gap: 1rem;
    grid-template-columns: repeat(1, 1fr);
    max-width: 25rem;
    margin-right: auto;
    margin-left: auto;
  }
}

.salesforce-features__card-wrap.card-wrap2 {
  margin-top: 1.25rem;
}
@media screen and (max-width: 768px) {
  .salesforce-features__card-wrap.card-wrap2 {
    margin-top: 2.3125rem;
  }
}

.salesforce-features__card {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 768px) {
  .salesforce-features__card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 1.125rem;
  }
}

.salesforce-features__card:not(:last-child)::after {
  position: absolute;
  content: "";
  right: -17%;
  top: 30%;
  width: 2.1625rem;
  height: 2.5rem;
  background-color: #7BD9FF;
  -webkit-clip-path: polygon(0 0, 0 100%, 100% 50%);
          clip-path: polygon(0 0, 0 100%, 100% 50%);
  z-index: 9;
}
@media screen and (max-width: 768px) {
  .salesforce-features__card:not(:last-child)::after {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .triangle-right.md-show {
    width: 1.875rem;
    height: 1.625rem;
    background-color: #7BD9FF;
    -webkit-clip-path: polygon(0 0, 100% 0%, 50% 100%);
            clip-path: polygon(0 0, 100% 0%, 50% 100%);
    margin-right: auto;
    margin-left: auto;
    position: relative;
    z-index: 9;
  }
}

.salesforce-features__img-wrap {
  margin-right: auto;
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.salesforce-features__card img {
  width: 14.8125rem;
  height: 14.8125rem;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .salesforce-features__card img {
    width: 21.0625rem;
    height: 21.0625rem;
  }
}

.salesforce-features__img-wrap .salesforce-img01 {
  width: 11rem;
  height: 8.3125rem;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 2.8125rem;
}
@media screen and (max-width: 768px) {
  .salesforce-features__img-wrap .salesforce-img01 {
    width: 5.4375rem;
    height: 4.1875rem;
    margin-top: 0;
    margin-bottom: 0;
  }
}

.salesforce-features__img-wrap .salesforce-img02 {
  width: 16.875rem;
  height: 11.5rem;
  margin-right: auto;
  margin-left: auto;
  margin-left: 0.9375rem;
  margin-bottom: 0.875rem;
}
@media screen and (max-width: 768px) {
  .salesforce-features__img-wrap .salesforce-img02 {
    width: 10.1875rem;
    height: 6.9375rem;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: auto;
  }
}

.salesforce-features__img-wrap .salesforce-img03 {
  width: 10.75rem;
  height: 7.75rem;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 4.375rem;
}
@media screen and (max-width: 768px) {
  .salesforce-features__img-wrap .salesforce-img03 {
    width: 5.3125rem;
    height: 3.8125rem;
    margin-top: 0;
    margin-bottom: 0;
  }
}

.salesforce-features__img-wrap .salesforce-img04 {
  width: 16.75rem;
  height: 7.5625rem;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 2.5625rem;
  margin-top: 3.75rem;
}
@media screen and (max-width: 768px) {
  .salesforce-features__img-wrap .salesforce-img04 {
    width: 11.125rem;
    height: 5rem;
    margin-top: 0;
    margin-bottom: 0;
  }
}

.salesforce-features__img-wrap .salesforce-img05 {
  width: 13.5rem;
  height: 10.0625rem;
  margin-right: auto;
  margin-left: auto;
  margin-top: 2.5rem;
  margin-bottom: 1.3125rem;
}
@media screen and (max-width: 768px) {
  .salesforce-features__img-wrap .salesforce-img05 {
    width: 7.4375rem;
    height: 5.5625rem;
    margin-top: 0;
    margin-bottom: 0;
  }
}

.salesforce-features__img-wrap .salesforce-img06 {
  width: 10.25rem;
  height: 11.8125rem;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 768px) {
  .salesforce-features__img-wrap .salesforce-img06 {
    width: 5.625rem;
    height: 6.5rem;
    margin-top: 0;
    margin-bottom: 0;
  }
}

.salesforce-features__card .salesforce-img04-text {
  padding-top: 0.625rem;
}

.salesforce-features__card .salesforce-img05-text {
  padding-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .salesforce-features__card .salesforce-img05-text {
    padding-top: 0.625rem;
  }
}

@media screen and (max-width: 768px) {
  .salesforce-features__card .salesforce-img06-text {
    padding-top: 1.875rem;
  }
}

.salesforce-features__card p {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 700;
  color: #192636;
  width: 13.75rem;
}
@media screen and (max-width: 768px) {
  .salesforce-features__card p {
    font-size: 0.875rem;
  }
}

.salesforce-features__flow {
  margin-top: 1.5625rem;
}
@media screen and (max-width: 768px) {
  .salesforce-features__flow {
    margin-top: 1rem;
  }
}

.salesforce-features__flow-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .salesforce-features__flow-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.salesforce-features__flow-item:not(:first-child) {
  margin-top: 1.875rem;
}
@media screen and (max-width: 768px) {
  .salesforce-features__flow-item:not(:first-child) {
    margin-top: 1rem;
  }
}

.salesforce-features__flow-left {
  width: 14.375rem;
  height: 2.125rem;
  background-color: #FFFFFF;
  border: 1px solid #00A1E0;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .salesforce-features__flow-left {
    max-width: 37.5rem;
    width: 100%;
  }
}

.salesforce-features__flow-left span {
  font-size: 1.125rem;
  line-height: 1.875;
  font-weight: 500;
  color: #00A1E0;
}
@media screen and (max-width: 768px) {
  .salesforce-features__flow-left span {
    font-size: 1rem;
  }
}

.triangle-bottom {
  width: 1.875rem;
  height: 1.625rem;
  background-color: #E5E5E5;
  -webkit-clip-path: polygon(0 0, 100% 0%, 50% 100%);
          clip-path: polygon(0 0, 100% 0%, 50% 100%);
  margin-right: auto;
  margin-left: auto;
  margin-top: 0.875rem;
}
@media screen and (max-width: 768px) {
  .triangle-bottom {
    margin-top: 0.75rem;
  }
}

.salesforce-features__flow-right {
  margin-left: 3.125rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .salesforce-features__flow-right {
    margin-left: 0;
  }
}

.salesforce-features__flow-right p {
  padding-left: 1em;
  text-indent: -1em;
  font-size: 1rem;
  line-height: 1.875;
  font-weight: 400;
  color: #192636;
}
@media screen and (max-width: 768px) {
  .salesforce-features__flow-right p {
    font-size: 0.9375rem;
    line-height: 1.5;
  }
}

@media screen and (max-width: 768px) {
  .salesforce-features__flow-right p:not(:first-child) {
    margin-top: 0.3125rem;
  }
}

@media screen and (max-width: 768px) {
  .salesforce-features__flow-right p:first-child {
    margin-top: 0.9375rem;
  }
}

@media screen and (max-width: 768px) {
  .salesforce-features__flow-right p.salesforce-features__flow-text {
    padding-left: 0;
    text-indent: 0;
  }
}

.salesforce-features__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 1.6875rem;
}
@media screen and (max-width: 768px) {
  .salesforce-features__block {
    margin-top: 1.3125rem;
    display: block;
  }
}

.salesforce-features__image-wrap {
  max-width: 15rem;
  width: 100%;
  margin-bottom: 6.375rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .salesforce-features__image-wrap {
    max-width: 18.75rem;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 0;
  }
}

.ssalesforce-features__image-wrap img {
  width: 100%;
  aspect-ratio: 240/198;
  -o-object-fit: cover;
     object-fit: cover;
}
.salesforce-features__text-wrap {
  margin-left: 3.125rem;
  margin-top: 1.875rem;
}
@media screen and (max-width: 768px) {
  .salesforce-features__text-wrap {
    margin-left: 0;
    margin-top: 2.375rem;
    margin-bottom: 5.25rem;
  }
}

.salesforce-features__text {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.875;
  color: #192636;
}
@media screen and (max-width: 768px) {
  .salesforce-features__text {
    font-size: 0.9375rem;
    line-height: 1.6;
    padding-left: 1em;
    text-indent: -1em;
  }
}

.salesforce-features__text.small {
  font-size: 0.875rem;
  line-height: 2.142857;
  padding-left: 1em;
}
@media screen and (max-width: 768px) {
  .salesforce-features__text.small {
    font-size: 0.75rem;
    padding-left: 2em;
  }
}

.salesforce-features__container-img-wrap {
  max-width: 38.4375rem;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  margin-top: 3.3125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .salesforce-features__container-img-wrap {
    max-width: 37.5rem;
    margin-top: 2.5rem;
  }
}

.salesforce-features__img-wrap img {
  width: 100%;
  aspect-ratio: 615/278;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .salesforce-features__img-wrap img {
    aspect-ratio: 1.5/1;
  }
}

.salesforce-features__img-wrap p {
  font-size: 0.875rem;
  line-height: 2.142857;
  font-weight: 400;
  color: #192636;
  white-space: nowrap;
  width: 3.375rem;
}
@media screen and (max-width: 768px) {
  .salesforce-features__img-wrap p {
    margin-top: 0.3125rem;
    font-size: 0.625rem;
    line-height: 3;
    text-align: right;
  }
}

.salesforce-features__container-img-flex {
  display: grid;
  gap: 1.875rem;
  margin-top: 3.125rem;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 768px) {
  .salesforce-features__container-img-flex {
    margin-top: 2.5rem;
  }
}

.salesforce-features__container-img-flex img {
  max-width: 26.875rem;
  width: 100%;
  aspect-ratio: 1.5/1;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .salesforce-features__container-img-flex img {
    aspect-ratio: 1.4/1;
  }
}

.salesforce-features__container-text {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.6875;
  color: #192636;
  margin-top: 0.625rem;
}
@media screen and (max-width: 768px) {
  .salesforce-features__container-text {
    font-size: 0.875rem;
    line-height: 1.71428;
  }
}

.salesforce-features__asterisk {
  margin-top: 1.5rem;
  font-size: 1.125rem;
  line-height: 2.111111;
  font-weight: 500;
  color: #00A1E0;
}
@media screen and (max-width: 768px) {
  .salesforce-features__asterisk {
    margin-top: 1.1875rem;
    font-size: 0.9375rem;
  }
}

.salesforce-features__item-subtitle {
  font-size: 1.125rem;
  line-height: 2.111111;
  font-weight: 500;
  color: #192636;
}
@media screen and (max-width: 768px) {
  .salesforce-features__item-subtitle {
    font-size: 0.9375rem;
  }
}

.salesforce-features__item-text {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.875;
  color: #192636;
  margin-top: 0.75rem;
}
@media screen and (max-width: 768px) {
  .salesforce-features__item-text {
    font-size: 0.9375rem;
    line-height: 2;
    margin-top: 0.5rem;
  }
}

.salesforce-features__item-text {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.875;
  color: #192636;
  margin-top: 0.75rem;
}
@media screen and (max-width: 768px) {
  .salesforce-features__item-text {
    font-size: 0.9375rem;
    line-height: 2;
    margin-top: 0.5rem;
  }
}

.salesforce-features__container .salesforce-features__item-text:not(:last-child) {
  margin-bottom: 2.25rem;
}
@media screen and (max-width: 768px) {
  .salesforce-features__container .salesforce-features__item-text:not(:last-child) {
    margin-bottom: 3.125rem;
  }
}

.salesforce__btn-wrap {
  background-color: #F4F6F7;
  padding-top: 2.75rem;
  padding-bottom: 3.0625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 768px) {
  .salesforce__btn-wrap {
    padding-top: 1.625rem;
    padding-bottom: 1.9375rem;
  }
}

.salesforce__btn-wrap p {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 2.11111111;
  color: #192636;
}
@media screen and (max-width: 768px) {
  .salesforce__btn-wrap p {
    font-size: 0.9375rem;
    line-height: 2.53333333;
  }
}

.salesforce__btn.btn2 {
  margin-top: 1.25rem;
  width: 13.8125rem;
}
@media screen and (max-width: 768px) {
  .salesforce__btn.btn2 {
    margin-top: 1rem;
    width: 9.8125rem;
    height: 2.0625rem;
  }
}

.support__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 1.6875rem;
  margin-bottom: 2.8125rem;
}
@media screen and (max-width: 768px) {
  .support__container {
    margin-top: 0.625rem;
    margin-bottom: 2.125rem;
    display: block;
  }
}

.support__content {
  width: 44.8%;
}
@media screen and (max-width: 768px) {
  .support__content {
    width: 100%;
  }
}

.support__content-title {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.36363636;
  color: #00A1E0;
}
@media screen and (max-width: 768px) {
  .support__content-title {
    font-size: 1rem;
    line-height: 1.875;
  }
}

.support__content-text {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.875;
  color: #192636;
  margin-top: 0.6875rem;
}
@media screen and (max-width: 768px) {
  .support__content-text {
    font-size: 0.9375rem;
    line-height: 2;
    margin-top: 0.625rem;
  }
}

.support__list {
  width: 52.9%;
  margin-left: 1.3125rem;
  border: 1px solid #00A1E0;
  border-radius: 0.5rem;
}
@media screen and (max-width: 768px) {
  .support__list {
    width: 100%;
    margin-left: 0;
    margin-top: 1.8125rem;
  }
}

.support__item ol {
  margin: 0;
  padding: 1.5625rem 1.25rem 0.875rem 1.25rem;
  list-style: none;
  counter-reset: li;
}
@media screen and (max-width: 768px) {
  .support__item ol {
    padding: 1.6875rem 0.625rem 0.875rem 0.625rem;
  }
}

.support__item ol li {
  position: relative;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.5;
  color: #192636;
  padding-left: 1.875rem;
  border-bottom: 2px dashed #C3C1C1;
  padding-bottom: 0.375rem;
  padding-top: 0.375rem;
}
@media screen and (max-width: 768px) {
  .support__item ol li {
    font-size: 0.9375rem;
  }
}

.support__item ol li:first-child {
  border-top: 2px dashed #C3C1C1;
}
.support__item p {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.57142;
  color: #192636;
  text-align: right;
  margin-top: 0.375rem;
}
@media screen and (max-width: 768px) {
  .support__item p {
    font-size: 0.8125rem;
    line-height: 1.6923;
  }
}

/* 2つ目以降のliにmargin-topを指定 */
/* 数字のスタイル */
.support__item ol li::before {
  counter-increment: li;
  content: counter(li);
  position: absolute;
  left: 0;
  top: 0.375rem; /* 数字のY軸線上の位置を調整 */
  display: block;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  background-color: #00A1E0;
  font-size: 0.6875rem;
  color: #FFFFFF;
  line-height: 20px;
  text-align: center;
}

.support__title {
  margin-top: 1.6875rem;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.36363636;
  color: #00A1E0;
}
@media screen and (max-width: 768px) {
  .support__title {
    margin-top: 0.875rem;
    font-size: 1rem;
    line-height: 1.875;
  }
}

.support__title.mt108 {
  margin-top: 6.75rem;
}
@media screen and (max-width: 768px) {
  .support__title.mt108 {
    margin-top: 5.25rem;
  }
}

.support__title.mt96 {
  margin-top: 6rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #B4B4B4;
}
@media screen and (max-width: 768px) {
  .support__title.mt96 {
    margin-top: 4.8125rem;
  }
}

.support__title.mt50 {
  margin-top: 3.125rem;
}
@media screen and (max-width: 768px) {
  .support__title.mt50 {
    margin-top: 2.3125rem;
  }
}

.straining-services__item.mt100 {
  margin-top: 6.25rem;
}
@media screen and (max-width: 768px) {
  .straining-services__item.mt100 {
    margin-top: 5rem;
  }
}

.support__text {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.875;
  color: #192636;
  margin-top: 0.5625rem;
}
@media screen and (max-width: 768px) {
  .support__text {
    font-size: 0.9375rem;
    line-height: 2;
  }
}

.support__hr {
  margin-top: 1.9375rem;
  margin-bottom: 1.9375rem;
  border: 1px solid #C3C1C1;
}
@media screen and (max-width: 768px) {
  .support__hr {
    margin-top: 1.375rem;
    margin-bottom: 1.375rem;
  }
}

.support-example__list {
  margin-top: 2.8125rem;
  width: 89%;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .support-example__list {
    margin-top: 2.5rem;
    width: 100%;
  }
}

.support-example__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
.support-example__item + .support-example__item {
  margin-top: 2.8125rem;
}
@media screen and (max-width: 768px) {
  .support-example__item + .support-example__item {
    margin-top: 1.875rem;
  }
}

.support-example__item-content {
  margin-left: 1.875rem;
}
@media screen and (max-width: 768px) {
  .support-example__item-content {
    margin-left: 0.5625rem;
  }
}

.support-example__item-title {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.8888888;
  color: #333333;
}
@media screen and (max-width: 768px) {
  .support-example__item-title {
    font-size: 0.9375rem;
    line-height: 1.46666666;
  }
}

.support-example__item-text {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.875;
  color: #192636;
  margin-top: 0.75rem;
}
@media screen and (max-width: 768px) {
  .support-example__item-text {
    font-size: 0.8125rem;
    margin-top: 0.3125rem;
    line-height: 1.6923;
  }
}

.support-example__item-btn-wrap {
  margin-top: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.6875rem;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .support-example__item-btn-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    margin-top: 0.5625rem;
  }
}

.support-example__item-btn {
  border-radius: 0.8125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.6875rem;
  padding: 0.125rem 1rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #00A1E0;
  -webkit-transition: color 0.2s, background-color 0.2s;
  transition: color 0.2s, background-color 0.2s;
  position: relative;
  background-color: #FFFFFF;
}
.support-example__item-btn:focus {
  outline: none;
}
@media screen and (max-width: 768px) {
  .support-example__item-btn {
    font-size: 0.6875rem;
    padding: 0.0625rem 1rem;
  }
}

.support-example__item-btn span {
  font-size: 0.875rem;
  font-weight: 500;
  color: #00A1E0;
}
@media screen and (max-width: 768px) {
  .support-example__item-btn span {
    font-size: 0.6875rem;
  }
}

/* グリッド用のスタイル */
.guide__content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.625rem 3.125rem;
}
@media screen and (max-width: 768px) {
  .guide__content {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.375rem 1.1875rem;
  }
}

.guide__content-item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 5;
  margin-bottom: 3.75rem;
}
@media screen and (max-width: 768px) {
  .guide__content-item {
    margin-bottom: 2.5rem;
  }
}

.card {
  grid-row: span 5;
  display: grid;
  grid-template-rows: subgrid;
  gap: 0.625rem;
}
@media screen and (max-width: 768px) {
  .card {
    gap: 0.625rem;
  }
}

.card__img {
  width: 100%;
  position: relative;
}

.card__img-wrap {
  width: 100%;
  position: relative;
}

.card__img img {
  aspect-ratio: 300/225;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: auto;
  border-radius: 0.625rem;
}
@media screen and (max-width: 768px) {
  .card__img img {
    aspect-ratio: 163/122.25;
    width: 100%;
  }
}

.card__label {
  position: absolute;
  bottom: 0;
  right: 0;
  margin: 0;
  color: #333333;
  font-size: 0.625rem;
  font-weight: 500;
  font-family: "Noto Sans JP", serif;
  line-height: 1;
  padding: 0.375rem 0.625rem;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .card__label {
    padding: 0.3125rem 0.625rem;
  }
}

.card__heading {
  margin-bottom: -0.5rem;
  margin-top: -0.3125rem;
}
@media screen and (max-width: 768px) {
  .card__heading {
    margin-bottom: -0.5rem;
  }
}

.card__heading span {
  padding-left: 0.4375rem;
  padding-right: 0.5625rem;
  padding-top: 0.125rem;
  padding-bottom: 0.125rem;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 2;
  font-family: "Poppins", serif;
  color: #535353;
  background-color: #E3E3E3;
}
@media screen and (max-width: 768px) {
  .card__heading span {
    font-size: 0.6875rem;
  }
}

.card__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.3125rem;
}
@media screen and (max-width: 768px) {
  .card__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 0;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.card__title--long {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.625rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.card__title-sub {
  position: relative;
  margin-right: 1.25rem;
  font-size: 0.8125rem;
  line-height: 1.2;
  font-weight: 700;
  font-family: "Noto Sans JP", serif;
  color: gray;
}
@media screen and (max-width: 768px) {
  .card__title-sub {
    margin-right: 0.625rem;
    margin-top: 0.3125rem;
  }
}

.card__title-sub::after {
  content: "";
  position: absolute;
  margin-left: 0.4375rem;
  width: 1px;
  height: 0.875rem;
  background-color: gray;
}
@media screen and (max-width: 768px) {
  .card__title-sub::after {
    margin-top: 0.125rem;
  }
}

.card__title-main {
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.647058;
  font-family: "Noto Sans JP", serif;
  color: #192636;
  letter-spacing: 0.03em;
  word-break: break-all;
  -webkit-hyphens: auto;
      -ms-hyphens: auto;
          hyphens: auto;
}
@media screen and (max-width: 768px) {
  .card__title-main {
    font-size: 0.9375rem;
  }
}

.card__text {
  margin-top: 0.4375rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.71428;
  font-family: "Noto Sans JP", serif;
  color: gray;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .card__text {
    margin-top: 0;
    font-size: 0.8125rem;
    line-height: 1.461538;
  }
}

.card__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 0.625rem;
}
@media screen and (max-width: 768px) {
  .card__bottom {
    margin-top: 0.375rem;
  }
}

.card__time {
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.6666667;
  color: gray;
}
@media screen and (max-width: 768px) {
  .card__time {
    font-size: 0.6875rem;
    letter-spacing: 0;
  }
}

.card__link {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 0.8125rem;
  padding-right: 0.8125rem;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  color: #192636;
  letter-spacing: 0;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 768px) {
  .card__link {
    font-size: 0.6875rem;
    padding-left: 0.25rem;
    padding-right: 0.5rem;
  }
}

.card__link:hover {
  opacity: 0.7;
}

.card__link:after {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-top: 1.2px solid #333333;
  border-right: 1.2px solid #333333;
  -webkit-transform: rotate(45deg) translateY(-50%);
          transform: rotate(45deg) translateY(-50%);
  position: absolute;
  top: 43%;
  right: 0;
  border-radius: 1px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 768px) {
  .card__link:after {
    width: 0.3125rem;
    height: 0.3125rem;
  }
}

.guide__icon-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 3.125rem;
}
@media screen and (max-width: 768px) {
  .guide__icon-items {
    gap: 2.1875rem 1.1875rem;
  }
}
@media screen and (max-width: 500px) {
  .guide__icon-items {
    width: 90%;
  }
}
@media screen and (max-width: 425px) {
  .guide__icon-items {
    width: 100%;
  }
}

.guide__icon-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25rem;
}
@media screen and (max-width: 768px) {
  .guide__icon-item {
    gap: 0.625rem;
  }
}

.guide__icon-item img {
  width: 4.5rem;
  height: 4.5rem;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .guide__icon-item img {
    width: 4.125rem;
    height: 4.125rem;
  }
}

.guide__icon-text {
  margin-top: 0.625rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0;
  font-family: "Noto Sans JP", serif;
  color: #192636;
}
@media screen and (max-width: 768px) {
  .guide__icon-text {
    margin-top: 0.3125rem;
    font-size: 0.875rem;
    line-height: 1.285714;
  }
}

.guide__icon-text span {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.428571;
  letter-spacing: 0;
  font-family: "Noto Sans JP", serif;
  color: #192636;
}
@media screen and (max-width: 768px) {
  .guide__icon-text span {
    font-size: 0.75rem;
    line-height: 1.285714;
  }
}

.seminar-info {
  padding-top: 1.875rem;
  padding-bottom: 4.375rem;
}
@media screen and (max-width: 768px) {
  .seminar-info {
    padding-top: 2.375rem;
    padding-bottom: 2.4375rem;
  }
}

.seminar-info__inner {
  padding-left: 1.5625rem;
  padding-right: 1.5625rem;
  max-width: 60.5rem;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .seminar-info__inner {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
    max-width: 37.5rem;
  }
}

.seminar-info__title {
  text-align: center;
}

.seminar-info__list {
  margin-top: 1.375rem;
}
@media screen and (max-width: 768px) {
  .seminar-info__list {
    margin-top: 0.4375rem;
  }
}

.seminar-info__list-item {
  padding: 0.9375rem 0.4375rem 0.625rem;
  border-bottom: 1px solid #00A1E0;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .seminar-info__list-item {
    padding: 0.6875rem 0 1.125rem 0.625rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.seminar-info__list-item:first-child {
  border-top: 1px solid #00A1E0;
}

.seminar-info__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .seminar-info__content {
    display: block;
  }
}

.seminar-info__list-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.seminar-info__list-title p {
  font-size: 1.125rem;
  line-height: 1.666666;
  font-weight: 700;
  color: #192636;
}
@media screen and (max-width: 768px) {
  .seminar-info__list-title p {
    font-size: 1rem;
    line-height: 1.875;
  }
}

.seminar-info__list-title span {
  color: #00A1E0;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.875;
}

.seminar-info__list-date {
  font-size: 1.125rem;
  font-weight: 500;
  color: #192636;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 2.9375rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .seminar-info__list-date {
    margin-left: 0;
    margin-top: 0.375rem;
    font-size: 0.9375rem;
    line-height: 1.4666666;
  }
}

.seminar-info__item {
  margin-left: auto;
  margin-right: 0.625rem;
  margin-top: 0.625rem;
}
@media screen and (max-width: 768px) {
  .seminar-info__item {
    margin-right: 0;
  }
}

@media screen and (max-width: 768px) {
  .seminar-info__item.btn2 {
    width: 6.875rem;
    height: 2.0625rem;
    font-size: 0.875rem;
    flex-shrink: 0;
  }
}

@media screen and (max-width: 768px) {
  .seminar-info__item.btn2 span {
    font-size: 0.875rem;
  }
}

.npo-use {
  background-color: #C4EEFF;
  padding-top: 5.125rem;
  padding-bottom: 6.875rem;
  width: 100%;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .npo-use {
    padding-top: 1.5rem;
    padding-bottom: 1.8125rem;
  }
}

.npo-use__inner {
  padding-left: 1.5625rem;
  padding-right: 1.5625rem;
  max-width: 83rem;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 768px) {
  .npo-use__inner {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    max-width: 37.5rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
}

.npo-use__img-wrap {
  width: 50%;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .npo-use__img-wrap {
    width: 90%;
    max-width: 37.5rem;
    margin-right: auto;
    margin-left: auto;
  }
}

.npo-use__img1 {
  border-radius: 0.75rem;
  aspect-ratio: 637/435;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  position: relative;
  z-index: 8;
}
@media screen and (max-width: 768px) {
  .npo-use__img1 {
    width: 84%;
    aspect-ratio: 274/187;
    max-width: 37.5rem;
    margin-right: auto;
    margin-left: auto;
  }
}

.npo-use__img2 {
  -o-object-fit: cover;
     object-fit: cover;
  width: 38%;
  max-width: 14.75rem;
  aspect-ratio: 236/160;
  margin-top: -4.375rem;
  margin-left: -5.625rem;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .npo-use__img2 {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .npo-use__img2.md-show {
    -o-object-fit: cover;
       object-fit: cover;
    max-width: 9.375rem;
    position: absolute;
    width: 32%;
    top: 23%;
    right: 1%;
    z-index: 1;
  }
}

.npo-use__img3 {
  -o-object-fit: cover;
     object-fit: cover;
  width: 38%;
  max-width: 9.375rem;
  top: 20%;
  left: -3%;
  position: absolute;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .npo-use__img3 {
    width: 28%;
    top: 5%;
    left: 0;
  }
}

.npo-use__img4 {
  -o-object-fit: cover;
     object-fit: cover;
  width: 38%;
  max-width: 20rem;
  top: 2%;
  right: -6%;
  position: absolute;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .npo-use__img4 {
    display: none;
  }
}

.npo-use__content {
  width: 52%;
  background-color: #FFFFFF;
  border-radius: 0.75rem;
  padding-top: 5.3%;
  padding-bottom: 4.1%;
  padding-left: 7.4%;
  padding-right: 4.9%;
  margin-left: -2.5rem;
  margin-top: 3.9375rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .npo-use__content {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    margin-top: -1.875rem;
    padding-top: 15%;
    padding-bottom: 9%;
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
  }
}

.npo-use__title {
  font-size: 1.875rem;
  line-height: 1.4;
  font-weight: 700;
  color: #00A1E0;
  text-align: center;
}
@media screen and (max-width: 1320px) {
  .npo-use__title {
    font-size: 1.625rem;
  }
}
@media screen and (max-width: 768px) {
  .npo-use__title {
    font-size: 1.125rem;
  }
}

.npo-use__text {
  margin-top: 1.25rem;
  font-size: 1rem;
  line-height: 1.875;
  font-weight: 400;
  color: #192636;
}
@media screen and (max-width: 1320px) {
  .npo-use__text {
    font-size: 0.9375rem;
  }
}
@media screen and (max-width: 768px) {
  .npo-use__text {
    font-size: 0.9375rem;
    line-height: 2;
  }
}

.npo-use__btn-wrap {
  margin-top: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .npo-use__btn-wrap {
    margin-top: 1.4375rem;
  }
}

@media screen and (max-width: 768px) {
  .npo-use__btn.btn2 {
    width: 6.875rem;
    height: 2.0625rem;
  }
}

@media screen and (max-width: 768px) {
  .npo-use__btn.btn2 span {
    font-size: 0.875rem;
  }
}

@media screen and (max-width: 768px) {
  .npo-use__btn.btn2::after {
    width: 0.5rem;
    height: 0.5rem;
  }
}

.services {
  padding-top: 3.5rem;
}
@media screen and (max-width: 768px) {
  .services {
    padding-top: 1.625rem;
  }
}

.services__inner {
  padding-left: 1.5625rem;
  padding-right: 1.5625rem;
  max-width: 75.625rem;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .services__inner {
    max-width: 37.5rem;
  }
}

.services__title {
  text-align: center;
}

.services__items {
  display: grid;
  gap: 3.375rem;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 4.6875rem;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .services__items {
    grid-template-columns: repeat(1, 1fr);
    max-width: 37.5rem;
    margin-top: 1.375rem;
    gap: 1.75rem;
    margin-left: auto;
    margin-right: auto;
  }
}

.services__item-circle {
  max-width: 12.9375rem;
  margin-right: auto;
  margin-left: auto;
  position: relative;
}
@media screen and (max-width: 768px) {
  .services__item-circle {
    max-width: 6.25rem;
  }
}

.services__item-circle img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

.services__item-circle span {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 1.875rem;
  font-weight: 700;
  color: #00A1E0;
  z-index: 1;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .services__item-circle span {
    font-size: 1rem;
    line-height: 1.30769;
  }
}

.services__content {
  margin-top: 1.3125rem;
}
@media screen and (max-width: 768px) {
  .services__content {
    margin-top: 0.625rem;
    max-width: 28.125rem;
    margin-right: auto;
    margin-left: auto;
  }
}

.services__content p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.875;
  color: #192636;
}
@media screen and (max-width: 768px) {
  .services__content p {
    font-size: 0.9375rem;
    line-height: 2;
  }
}

.example {
  padding-top: 12.125rem;
}
@media screen and (max-width: 768px) {
  .example {
    padding-top: 4.75rem;
  }
}

.example__inner {
  padding-left: 1.5625rem;
  padding-right: 1.5625rem;
  max-width: 65.125rem;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .example__inner {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    max-width: 37.5rem;
  }
}

.example__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.example__title::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 1px;
  background-color: #00A1E0;
  margin-top: 0.625rem;
}
.example-list {
  margin-top: 3.75rem;
}
@media screen and (max-width: 768px) {
  .example-list {
    margin-top: 1.8125rem;
  }
}

.example-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .example-list__item {
    display: block;
  }
}

.example-list__item + .example-list__item {
  margin-top: 4.75rem;
}
@media screen and (max-width: 768px) {
  .example-list__item + .example-list__item {
    margin-top: 2.8125rem;
  }
}

.example-list__item-img {
  max-width: 25.25rem;
  width: 100%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .example-list__item-img {
    max-width: 37.5rem;
  }
}

.example-list__item-img img {
  width: 100%;
  aspect-ratio: 404/244;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.75rem;
}
@media screen and (max-width: 768px) {
  .example-list__item-img img {
    aspect-ratio: 302/183;
    width: 82.5137%;
    margin-right: auto;
    margin-left: auto;
  }
}

.example-list__item-content {
  margin-left: 3.3125rem;
}
@media screen and (max-width: 768px) {
  .example-list__item-content {
    margin-left: 0;
  }
}

.example-list__title {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.363636;
  color: #00A1E0;
}
@media screen and (max-width: 768px) {
  .example-list__title {
    font-size: 1rem;
    margin-top: 1.6875rem;
  }
}

.example-list__text {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.875;
  color: #192636;
  margin-top: 1.25rem;
}
@media screen and (max-width: 768px) {
  .example-list__text {
    font-size: 0.9375rem;
    margin-top: 0.5rem;
    line-height: 2;
  }
}

.example-list__btn-wrap {
  margin-top: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .example-list__btn-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 0.625rem;
  }
}

@media screen and (max-width: 768px) {
  .example-list__btn.btn2 {
    width: 6.875rem;
    height: 2.0625rem;
    font-size: 0.875rem;
  }
}

@media screen and (max-width: 768px) {
  .example-list__btn.btn2 span {
    font-size: 0.875rem;
    padding: 0.3125rem 0.5rem 0.5rem;
  }
}

@media screen and (max-width: 768px) {
  .example-list__btn.btn2::after {
    width: 0.5rem;
    height: 0.5rem;
  }
}

.support-record {
  padding-top: 11.75rem;
  padding-bottom: 4.375rem;
}
@media screen and (max-width: 768px) {
  .support-record {
    padding-top: 6.9375rem;
    padding-bottom: 3.1875rem;
  }
}

.support-record__inner {
  padding-left: 1.5625rem;
  padding-right: 1.5625rem;
  max-width: 65.125rem;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .support-record__inner {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    max-width: 37.5rem;
  }
}

.support-record__title.section-title {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  z-index: 9;
}
@media screen and (max-width: 768px) {
  .support-record__title.section-title {
    text-align: left;
  }
}

.support-record__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .support-record__wrap {
    display: none;
  }
}

.support-record__img {
  max-width: 31rem;
  width: 100%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .support-record__img {
    max-width: 37.5rem;
  }
}

.support-record__img .support-record__img01 {
  width: 100%;
  aspect-ratio: 496/300;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.75rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .support-record__img .support-record__img01 {
    max-width: 37.5rem;
    width: 87%;
    margin-right: auto;
    margin-left: auto;
  }
}

.support-record__img02 {
  max-width: 20.625rem;
  width: 100%;
  position: absolute;
  margin-top: 5rem;
  left: -28%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1320px) {
  .support-record__img02 {
    left: -10%;
    margin-top: 3.75rem;
    width: 80%;
  }
}
@media screen and (max-width: 768px) {
  .support-record__img02 {
    top: -46%;
    left: 4%;
    z-index: 1;
    max-width: 37.5rem;
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .support-record__img02.md-show {
    position: absolute;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    z-index: 1;
    max-width: 31.25rem;
    width: 100%;
    margin-top: 0.625rem;
  }
}

.support-record__img03 {
  max-width: 28.125rem;
  width: 100%;
  position: absolute;
  margin-top: -3.125rem;
  left: 140%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1320px) {
  .support-record__img03 {
    left: 130%;
    margin-top: -1.875rem;
  }
}
@media screen and (max-width: 1100px) {
  .support-record__img03 {
    left: 110%;
  }
}
@media screen and (max-width: 768px) {
  .support-record__img03 {
    display: none;
  }
}

.support-record__content {
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .support-record__content {
    margin-left: 0;
  }
}

.support-record__content-text {
  margin-top: 1.25rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.875;
  color: #192636;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .support-record__content-text {
    font-size: 0.9375rem;
    margin-top: 0.9375rem;
    line-height: 2;
  }
}

.splide.splide2 {
  margin-top: 1.625rem;
  padding-bottom: 6.5rem;
}
@media screen and (max-width: 768px) {
  .splide.splide2 {
    margin-top: 0.8125rem;
    padding-bottom: 3.1875rem;
  }
}

/* スライダー全体のスタイル */
.splide {
  width: 100%;
  overflow: hidden;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* スライダーリストのスタイル */
.splide__list {
  padding: 0;
  margin: 0;
}

/* 各スライドのスタイル */
.splide__slide {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 12.5%;
  text-align: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .splide__slide {
    width: 25%;
  }
}

/* ロゴ画像のスタイル */
.about {
  padding-top: 3.125rem;
  padding-bottom: 6.0625rem;
  background-color: #F8F8F8;
}
@media screen and (max-width: 768px) {
  .about {
    padding-top: 1.875rem;
    padding-bottom: 3.5625rem;
  }
}

.about__title {
  text-align: center;
}

.about__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 2.625rem;
}
@media screen and (max-width: 768px) {
  .about__container {
    display: block;
    margin-top: 1.25rem;
  }
}

.about__img {
  max-width: 32.125rem;
  aspect-ratio: 514/216;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.75rem;
}
@media screen and (max-width: 768px) {
  .about__img {
    max-width: 100%;
  }
}

.about__body {
  margin-left: 1.875rem;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media screen and (max-width: 768px) {
  .about__body {
    margin-left: 0;
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .about__text {
    margin-top: 1.25rem;
  }
}

.about__btn-wrap {
  margin-top: 1.6875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .about__btn-wrap {
    margin-top: 1.6875rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media screen and (max-width: 768px) {
  .about__btn.btn2 {
    width: 6.875rem;
    height: 2.0625rem;
    font-size: 0.875rem;
  }
}

@media screen and (max-width: 768px) {
  .about__btn.btn2 span {
    font-size: 0.875rem;
    padding: 0.3125rem 0.5rem 0.5rem;
  }
}

@media screen and (max-width: 768px) {
  .about__btn.btn2::after {
    width: 0.5rem;
    height: 0.5rem;
  }
}

.training-services {
  margin-top: 6.25rem;
}
@media screen and (max-width: 768px) {
  .training-services {
    margin-top: 3.25rem;
  }
}

.training-services__inner {
  padding-top: 5.5625rem;
  padding-left: 1.5625rem;
  padding-right: 1.5625rem;
  max-width: 61.625rem;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .training-services__inner {
    padding-top: 2.5625rem;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    max-width: 37.5rem;
  }
}

.training-services__title {
  text-align: center;
  font-size: 2.5rem;
  line-height: 1.2;
  font-weight: 700;
  color: #00A1E0;
}
@media screen and (max-width: 768px) {
  .training-services__title {
    font-size: 1.25rem;
    line-height: 1.7;
  }
}

.training-services__text {
  margin-top: 4.3125rem;
  font-size: 1.125rem;
  line-height: 2.111111;
  font-weight: 500;
  color: #192636;
}
@media screen and (max-width: 768px) {
  .training-services__text {
    margin-top: 2.5625rem;
    font-size: 0.9375rem;
    line-height: 2;
  }
}

.training-services__list {
  margin-top: 5.625rem;
}
@media screen and (max-width: 768px) {
  .training-services__list {
    margin-top: 4.375rem;
  }
}

.training-services__item:not(:first-child) {
  margin-top: 4.375rem;
}
@media screen and (max-width: 768px) {
  .training-services__item:not(:first-child) {
    margin-top: 4.375rem;
  }
}

.training-services__item-title {
  font-size: 1.375rem;
  line-height: 1.363636;
  font-weight: 700;
  color: #FFFFFF;
  background-color: #00A1E0;
  border-radius: 0.5rem;
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
  padding-right: 1.25rem;
  padding-left: 1.25rem;
}
@media screen and (max-width: 768px) {
  .training-services__item-title {
    padding-top: 0.4375rem;
    padding-bottom: 0.4375rem;
    font-size: 1rem;
    line-height: 1.875;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.training-services__item-text {
  margin-top: 1.5rem;
  font-size: 1.125rem;
  line-height: 2.111111;
  font-weight: 500;
  color: #192636;
}
@media screen and (max-width: 768px) {
  .training-services__item-text {
    font-size: 0.9375rem;
    line-height: 2;
  }
}

.seminar__title {
  margin-top: 2.125rem;
  font-size: 1.125rem;
  line-height: 1.666666;
  font-weight: 700;
  color: #192636;
}
@media screen and (max-width: 768px) {
  .seminar__title {
    font-size: 0.9375rem;
    line-height: 1.46666666;
  }
}

/* セミナーリスト */
.seminar__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.625rem;
  margin-top: 0.625rem;
}
@media screen and (max-width: 768px) {
  .seminar__list {
    gap: 0.75rem;
    margin-top: 0.75rem;
  }
}

.seminar__item {
  background-color: #E8EFFF;
  padding: 1.5rem 3.125rem 1.5rem 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .seminar__item {
    padding: 0.75rem 1.5rem 0.75rem 0.875rem;
    display: block;
  }
}

/* セミナー日付 */
.seminar__date {
  font-size: 1.125rem;
  line-height: 2.1111111;
  font-weight: 500;
  color: #192636;
}
@media screen and (max-width: 768px) {
  .seminar__date {
    font-size: 0.9375rem;
    line-height: 1.46666666;
  }
}

/* 備考 */
.seminar__note {
  margin-top: 0.3125rem;
  font-size: 0.9375rem;
  line-height: 1.666666;
  font-weight: 400;
  color: #192636;
}
@media screen and (max-width: 768px) {
  .seminar__note {
    font-size: 0.8125rem;
    line-height: 1.46666666;
  }
}

/* アクションボタン */
.seminar__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3.125rem;
}
@media screen and (max-width: 768px) {
  .seminar__actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 1.25rem;
  }
}

.seminar__action {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 0.875rem;
  line-height: 2;
  font-weight: 400;
  color: #192636;
  text-decoration: none;
  color: #192636;
}
@media screen and (max-width: 768px) {
  .seminar__action {
    font-size: 0.8125rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0.8125rem;
    gap: 0;
  }
}

@media screen and (max-width: 768px) {
  .seminar__action.action-end {
    width: 7.5rem;
  }
}

.seminar__action--accepting.btn {
  position: relative;
}
.seminar__action--accepting.btn::after {
  position: absolute;
  left: 100%;
  top: 10%;
}
.seminar__action--none {
  font-size: 1rem;
  line-height: 2;
  font-weight: 500;
  color: #192636;
}
@media screen and (max-width: 768px) {
  .seminar__action--none {
    font-size: 0.9375rem;
  }
}

.seminar__action--not img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.seminar__action--not {
  width: 2rem;
  height: 1.0625rem;
  margin-top: 1.0625rem;
}
.seminar__title-text {
  margin-top: 0.625rem;
  font-size: 1.125rem;
  line-height: 2.111111;
  font-weight: 500;
  color: #192636;
}
@media screen and (max-width: 768px) {
  .seminar__title-text {
    font-size: 0.9375rem;
    line-height: 2;
  }
}

.seminar-details__link {
  text-decoration: underline;
  color: #00A1E0;
}

.seminar__text.text {
  margin-top: 0.625rem;
}

/* セミナー詳細 */
.seminar-details__table {
  margin-top: 2.625rem;
  margin-bottom: 1.875rem;
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
  color: #192636;
  font-weight: 400;
  line-height: 1.875;
  text-align: left;
  border-top: 1px solid #959595;
}
@media screen and (max-width: 768px) {
  .seminar-details__table {
    font-size: 0.875rem;
    line-height: 1.57142857;
    margin-top: 2.375rem;
    margin-bottom: 1.125rem;
  }
}

/* ヘッダー部分 */
.seminar-details__header th {
  text-align: center;
  padding: 0.8125rem 0.8125rem 1rem;
  border-bottom: 1px solid #959595;
}
@media screen and (max-width: 768px) {
  .seminar-details__header th {
    padding: 0.5rem;
  }
}

.seminar-details__empty-cell {
  border-bottom: 1px solid #959595;
  border-right: 1px solid #959595;
}

/* 初級・中級カラム */
.seminar-details__column--level {
  font-size: 1.125rem;
  line-height: 1;
  font-weight: 500;
  color: #192636;
}
@media screen and (max-width: 768px) {
  .seminar-details__column--level {
    font-size: 0.875rem;
  }
}

/* ボディ部分 */
.seminar-details__row {
  border-bottom: 1px solid #959595;
}

.seminar-details__row-title {
  font-weight: 500;
  padding: 0.75rem 0.625rem 0.8125rem;
  vertical-align: top;
  width: 10%;
  border-right: 1px solid #959595;
}
@media screen and (max-width: 768px) {
  .seminar-details__row-title {
    width: 14.3%;
    text-align: center;
    padding: 0.6875rem 0 0.875rem;
  }
}

.seminar-details__data {
  padding: 0.75rem 1.25rem 0.8125rem 1.375rem;
  text-align: left;
  vertical-align: top;
}
@media screen and (max-width: 768px) {
  .seminar-details__data {
    padding: 0.6875rem 0.1875rem 0.875rem 0.6875rem;
  }
}

/* 縦棒を右側に表示 */
.seminar-details__column--with-border {
  border-right: 1px solid #959595;
}

.seminar-details__data[colspan="2"] {
  text-align: left;
  line-height: 1.6;
}

.seminar__speaker {
  margin-top: 2.375rem;
}
@media screen and (max-width: 768px) {
  .seminar__speaker {
    margin-top: 1.25rem;
  }
}

.seminar__speaker-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.625rem;
}

.seminar__speaker-item + .seminar__speaker-item {
  margin-top: 2rem;
}
@media screen and (max-width: 768px) {
  .seminar__speaker-item + .seminar__speaker-item {
    margin-top: 1rem;
  }
}

.seminar__speaker-img {
  width: 10%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .seminar__speaker-img {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    margin-top: 1rem;
    width: 12%;
    margin-left: 1.25rem;
  }
}

.seminar__speaker-img img {
  max-width: 2.4375rem;
  aspect-ratio: 39/56;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

.seminar__speaker-content {
  width: 86%;
  position: relative;
  display: inline-block;
  padding: 1.125rem 1.5rem;
  border: 1px solid #6bc9db;
  border-radius: 1.25rem;
  background-color: #FFFFFF;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .seminar__speaker-content {
    padding: 0.9375rem 0.625rem 0.9375rem 1.25rem;
    margin-left: 1.5rem;
    width: 70%;
  }
}

.seminar__speaker-content::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  border-style: solid;
  border-width: 7.5px 18px 7.5px 0;
  border-color: transparent #6bc9db transparent transparent;
  translate: -100% -50%;
}
@media screen and (max-width: 768px) {
  .seminar__speaker-content::before {
    top: 30%;
  }
}

.seminar__speaker-content::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  border-style: solid;
  border-width: 6.4px 15.4px 6.4px 0;
  border-color: transparent #ffffff transparent transparent;
  translate: -100% -50%;
}
@media screen and (max-width: 768px) {
  .seminar__speaker-content::after {
    top: 30%;
  }
}

.seminar__speaker-text {
  margin: 0;
  padding: 0;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.875;
  color: #192636;
}
@media screen and (max-width: 768px) {
  .seminar__speaker-text {
    font-size: 0.875rem;
    line-height: 1.57142857;
  }
}

.training-services__table {
  border-spacing: 0;
  margin-top: 1.875rem;
  width: 100%;
  border-bottom: 1px solid #B4B4B4;
}

/* training-services__table */
.training-services__top-th,
.training-services__top-td {
  border-top: 1px solid #B4B4B4;
}

.training-services__table th {
  width: 10%;
  padding: 0.9375rem 0.625rem 0.9375rem 0.125rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.0625;
  color: #333333;
}
@media screen and (max-width: 768px) {
  .training-services__table th {
    width: 20%;
    padding: 0.75rem 0.625rem 0.75rem 0.125rem;
    line-height: 1.5714;
    font-size: 0.875rem;
    vertical-align: top;
  }
}

.training-services__table td {
  width: 85%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.875;
  color: #192636;
  padding: 0.75rem;
}
@media screen and (max-width: 768px) {
  .training-services__table td {
    font-size: 0.875rem;
    padding: 0.75rem 0.0625rem 0.75rem 0.375rem;
    line-height: 1.5;
    width: 77.835%;
  }
}

.training-services__container {
  margin-top: 2.375rem;
  border: 1px solid #959595;
  border-radius: 0.5rem;
  padding: 1.875rem 1.5625rem 1.875rem 1.875rem;
}
@media screen and (max-width: 768px) {
  .training-services__container {
    margin-top: 2.125rem;
  }
}

.training-services__img-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .training-services__img-wrap {
    display: block;
  }
}

.training-services__img {
  max-width: 10.625rem;
  width: 100%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .training-services__img {
    max-width: 14.375rem;
    margin-right: auto;
    margin-left: auto;
  }
}

.training-services__img {
  width: 100%;
  aspect-ratio: 169/105;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.5rem;
  margin-left: 0.3125rem;
}
@media screen and (max-width: 768px) {
  .training-services__img {
    aspect-ratio: 230/144;
    margin-left: auto;
  }
}

.training-services__img-text {
  margin-left: 1.875rem;
  margin-top: 2.1875rem;
}
@media screen and (max-width: 768px) {
  .training-services__img-text {
    margin-left: 0;
    margin-top: 1.5rem;
  }
}

.training-services__content {
  margin-top: 0.3125rem;
}
@media screen and (max-width: 768px) {
  .training-services__content {
    margin-top: 1.5rem;
  }
}

.training-services__content-heading {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.875;
  color: #00A1E0;
}
@media screen and (max-width: 768px) {
  .training-services__content-heading {
    font-size: 0.875rem;
    line-height: 2.142857;
  }
}

.training-services__content-title {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 2.111111;
  color: #192636;
}
@media screen and (max-width: 768px) {
  .training-services__content-title {
    font-size: 0.9375rem;
    line-height: 1.46666666;
  }
}

.training-services__content-text {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.875;
  color: #192636;
  margin-top: 1.25rem;
}
@media screen and (max-width: 768px) {
  .training-services__content-text {
    font-size: 0.9375rem;
    line-height: 1.86666666;
    margin-top: 1.5rem;
  }
}

.contact-heading {
  text-align: center;
  margin-top: 8.625rem;
}
@media screen and (max-width: 768px) {
  .contact-heading {
    margin-top: 3.0625rem;
  }
}

.contact-heading__text {
  font-size: 1.375rem;
  line-height: 1.36363636;
  font-weight: 700;
  color: #00A1E0;
}
@media screen and (max-width: 768px) {
  .contact-heading__text {
    font-size: 1.125rem;
    line-height: 1.6666666;
  }
}

.contact-heading img {
  max-width: 1.9375rem;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  margin-top: 1.0625rem;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .contact-heading img {
    margin-top: 0.9375rem;
  }
}

.training__contact.contact {
  padding-top: 2.9375rem;
}
@media screen and (max-width: 768px) {
  .training__contact.contact {
    padding-top: 1.375rem;
  }
}

.usage {
  margin-top: 6.25rem;
}
@media screen and (max-width: 768px) {
  .usage {
    margin-top: 3.25rem;
  }
}

.usage__inner {
  padding-top: 5.5625rem;
  padding-bottom: 4.5rem;
}
@media screen and (max-width: 768px) {
  .usage__inner {
    padding-top: 2.5625rem;
    padding-bottom: 2.8125rem;
  }
}

.usage__title {
  text-align: center;
  font-size: 2.5rem;
  line-height: 1.2;
  font-weight: 700;
  color: #00A1E0;
}
@media screen and (max-width: 768px) {
  .usage__title {
    font-size: 1.25rem;
    line-height: 1.7;
  }
}

.usage__text {
  margin-top: 4.3125rem;
  font-size: 1.125rem;
  line-height: 2.111111;
  font-weight: 500;
  color: #192636;
}
@media screen and (max-width: 768px) {
  .usage__text {
    margin-top: 2.5625rem;
    font-size: 0.9375rem;
    line-height: 2;
  }
}

.usage__list-title {
  font-size: 1.875rem;
  line-height: 1.4;
  font-weight: 700;
  color: #00A1E0;
  margin-top: 4.8125rem;
}
@media screen and (max-width: 768px) {
  .usage__list-title {
    font-size: 1rem;
    line-height: 2.625;
    margin-top: 3.625rem;
  }
}

.usage__container {
  margin-top: 1.125rem;
}
@media screen and (max-width: 768px) {
  .usage__container {
    margin-top: 0.9375rem;
  }
}

.usage__item {
  background-color: #F4F6F7;
  padding-top: 1.8125rem;
  padding-bottom: 1.9375rem;
  padding-left: 1.9375rem;
  padding-right: 2.5rem;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .usage__item {
    padding-top: 0.75rem;
    padding-bottom: 1rem;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
}

.usage__item:not(:first-child) {
  margin-top: 1.25rem;
}
@media screen and (max-width: 768px) {
  .usage__item:not(:first-child) {
    margin-top: 0.625rem;
  }
}

.usage__item-title {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.36363636;
  color: #00A1E0;
}
@media screen and (max-width: 768px) {
  .usage__item-title {
    font-size: 1rem;
    line-height: 1.875;
  }
}

.usage__item-text-wrap:nth-child(2) {
  margin-top: 0.75rem;
}

.usage__item-text-wrap:not(:nth-child(2)) {
  margin-top: 1.375rem;
}

.usage__item-text-wrap p {
  font-size: 1rem;
  line-height: 1.875;
  font-weight: 400;
  color: #192636;
}
@media screen and (max-width: 768px) {
  .usage__item-text-wrap p {
    font-size: 0.9375rem;
    line-height: 2;
  }
}

.usage__item-text-wrap a {
  color: #00A1E0;
  text-decoration: underline;
}

.usage__content-wrap {
  margin-right: auto;
  margin-left: auto;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  .usage__content-wrap {
    margin-top: 1.625rem;
    margin-bottom: 1.625rem;
  }
}

.usage__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .usage__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.usage__content:not(:first-child) {
  margin-top: 1.875rem;
}
@media screen and (max-width: 768px) {
  .usage__content:not(:first-child) {
    margin-top: 1.0625rem;
  }
}

.usage__content-left {
  background-color: #00A1E0;
  color: #FFFFFF;
  font-size: 0.8125rem;
  font-weight: 700;
  border-radius: 0.375rem;
  padding: 0.4375rem;
  width: 6.8125rem;
  height: 2.1875rem;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .usage__content-left {
    font-size: 0.75rem;
    border-radius: 0.25rem;
    padding: 0.375rem;
    width: 4.375rem;
    height: 1.6875rem;
  }
}

.usage__content-right {
  margin-left: 1.25rem;
}
@media screen and (max-width: 768px) {
  .usage__content-right {
    margin-left: 0;
  }
}

.usage__content-right h3 {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 2.11111;
  color: #192636;
}
@media screen and (max-width: 768px) {
  .usage__content-right h3 {
    font-size: 0.9375rem;
    line-height: 2.5333333;
  }
}

.usage__content-right p {
  font-size: 1rem;
  line-height: 1.875;
  font-weight: 400;
  color: #192636;
}
@media screen and (max-width: 768px) {
  .usage__content-right p {
    font-size: 0.9375rem;
    line-height: 2;
  }
}

.usage__title-container:first-child {
  margin-top: 0.9375rem;
}
@media screen and (max-width: 768px) {
  .usage__title-container:first-child {
    margin-top: 0.625rem;
  }
}

.usage__title-container:not(:first-child) {
  margin-top: 1.5625rem;
}
@media screen and (max-width: 768px) {
  .usage__title-container:not(:first-child) {
    margin-top: 1.25rem;
  }
}

.usage__sub-title {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 2.11111;
  color: #192636;
  margin-top: 1.375rem;
}
@media screen and (max-width: 768px) {
  .usage__sub-title {
    font-size: 1rem;
    line-height: 1.875;
  }
}

.usage__container-subtitle {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.875;
  color: #192636;
  margin-top: 0.5rem;
}
@media screen and (max-width: 768px) {
  .usage__container-subtitle {
    font-size: 0.9375rem;
    line-height: 2;
  }
}

.usage__container-text {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.875;
  color: #192636;
  padding-left: 1em;
}
@media screen and (max-width: 768px) {
  .usage__container-text {
    font-size: 0.9375rem;
    line-height: 2;
  }
}

.package__inner {
  padding-top: 4.375rem;
}
@media screen and (max-width: 768px) {
  .package__inner {
    padding-top: 2.8125rem;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
}

.package__title {
  font-size: 1.875rem;
  line-height: 1.4;
  font-weight: 700;
  color: #00A1E0;
}
@media screen and (max-width: 768px) {
  .package__title {
    font-size: 1rem;
    line-height: 2.625;
    margin-left: 0.75rem;
    margin-right: 0.75rem;
  }
}

.package__text {
  margin-top: 1.4375rem;
  font-size: 1rem;
  line-height: 1.875;
  font-weight: 400;
  color: #192636;
}
@media screen and (max-width: 768px) {
  .package__text {
    margin-top: 0.5625rem;
    font-size: 0.9375rem;
    line-height: 2;
  }
}

.package__title-container {
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .package__title-container {
    margin-top: 2.5625rem;
  }
}

.package__sub-title {
  font-size: 1.375rem;
  line-height: 1.363636363;
  font-weight: 700;
  color: #192636;
}
@media screen and (max-width: 768px) {
  .package__sub-title {
    font-size: 1rem;
    line-height: 1.875;
    padding-left: 0.75rem;
    margin-bottom: 0.5rem;
  }
}

.package-list {
  width: 100%;
  line-height: 1;
  text-align: center;
  border-collapse: collapse;
  border: none;
  margin-top: 0.875rem;
  border-bottom: solid 1px #00A1E0;
}
@media screen and (max-width: 768px) {
  .package-list {
    margin-top: 0.625rem;
    border-spacing: 0;
    border-top: solid 1px #00A1E0;
    border-bottom: none;
  }
}

.package__table-title.mt38.md-show {
  margin-top: 2.375rem;
}

.package-list th,
.package-list td {
  padding: 0.9375rem 1.4375rem;
}
@media screen and (max-width: 768px) {
  .package-list th,
  .package-list td {
    padding: 0;
  }
}

@media screen and (max-width: 768px) {
  .package-list td {
    padding: 0.625rem 0.75rem;
    width: 50%;
  }
}

.package-list__head {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.875;
  color: #FFFFFF;
  background-color: #00A1E0;
  border-right: 1px solid #FFFFFF;
  border-bottom: 1px solid #FFFFFF;
}
@media screen and (max-width: 768px) {
  .package-list__head {
    font-size: 0.75rem;
    border-right: 1px solid #00A1E0;
    text-align: left;
  }
}

.package-list__data {
  text-align: left;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.85714;
  color: #192636;
  border-right: 1px solid #00A1E0;
  background-color: #F4F6F7;
}
@media screen and (max-width: 768px) {
  .package-list__data {
    font-size: 0.75rem;
    line-height: 1.6667;
    background-color: #FFFFFF;
    border-right: 1px solid #F4F6F7;
    border-bottom: solid 1px #00A1E0;
  }
}

.package-list tr {
  border: none !important;
}

@media screen and (max-width: 768px) {
  .package__table-title {
    text-align: center;
    background-color: #00A1E0;
    color: #FFFFFF;
    font-weight: 700;
    padding: 0.625rem;
    font-size: 0.75rem;
    line-height: 1.6667;
  }
}

.package__attention {
  padding: 0.9375rem 1.4375rem;
  font-size: 0.875rem;
  line-height: 1.85714;
  font-weight: 400;
  color: #192636;
  background-color: #F4F6F7;
}
@media screen and (max-width: 768px) {
  .package__attention {
    padding: 0.625rem;
    font-size: 0.75rem;
    line-height: 1.6667;
    background-color: #FFFFFF;
  }
}

.package__container {
  margin-top: 4.5625rem;
  padding-left: 1.5625rem;
  padding-right: 1.5625rem;
  max-width: 65.125rem;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .package__container {
    margin-top: 3.5625rem;
    padding-left: 0;
    padding-right: 0;
    max-width: 37.5rem;
  }
}

.package__sub-container {
  margin-top: 0.875rem;
}
@media screen and (max-width: 768px) {
  .package__sub-container {
    margin-top: 0.9375rem;
  }
}

.package__item {
  background-color: #F4F6F7;
  padding-top: 2.0625rem;
  padding-bottom: 4.125rem;
  padding-left: 2.875rem;
  padding-right: 2.25rem;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .package__item {
    padding-top: 1.4375rem;
    padding-bottom: 2.375rem;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
}

.package__item-title {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.36363636;
  color: #00A1E0;
}
@media screen and (max-width: 768px) {
  .package__item-title {
    font-size: 1rem;
    line-height: 1.875;
  }
}

.package__item-text {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 2.11111;
  color: #192636;
  padding-left: 1em;
  text-indent: -1em;
}
@media screen and (max-width: 768px) {
  .package__item-text {
    font-size: 0.9375rem;
    line-height: 2;
  }
}

.package__item-text-wrap {
  margin-top: 0.3125rem;
}
@media screen and (max-width: 768px) {
  .package__item-text-wrap {
    margin-top: 0.9375rem;
  }
}

.package__item-img-wrap:first-child {
  margin-top: 4rem;
}
@media screen and (max-width: 768px) {
  .package__item-img-wrap:first-child {
    margin-top: 2.5rem;
  }
}

.package__item-img-wrap:not(:first-child) {
  margin-top: 3rem;
}
@media screen and (max-width: 768px) {
  .package__item-img-wrap:not(:first-child) {
    margin-top: 2.5rem;
  }
}

.package__item-img-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .package__item-img-wrap {
    display: block;
  }
}

.package__item-img-wrap p {
  width: 9.375rem;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 2.111111111;
  color: #192636;
}
@media screen and (max-width: 768px) {
  .package__item-img-wrap p {
    font-size: 0.9375rem;
    line-height: 2.5333333;
  }
}

.package__item-img {
  max-width: 30.5rem;
  width: 100%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: 4.25rem;
}
@media screen and (max-width: 768px) {
  .package__item-img {
    margin-right: auto;
    margin-left: auto;
  }
}

.package__item-img01 {
  width: 100%;
  max-width: 21.375rem;
  aspect-ratio: 342/226;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .package__item-img01 {
    max-width: 13.875rem;
    aspect-ratio: 222/147;
    margin-left: 1.5rem;
  }
}

.package__item-img02 {
  width: 100%;
  max-width: 30.5rem;
  aspect-ratio: 488/233;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .package__item-img02 {
    max-width: 19.8125rem;
    aspect-ratio: 317/151;
    margin-left: 1.5rem;
  }
}

.usage__contact-heading.contact-heading {
  margin-top: 4.875rem;
}
@media screen and (max-width: 768px) {
  .usage__contact-heading.contact-heading {
    margin-top: 3.5625rem;
  }
}

.contact.usage__contact {
  padding-top: 4rem;
}
@media screen and (max-width: 768px) {
  .contact.usage__contact {
    padding-top: 1.375rem;
  }
}
#seminar,
#selesforce-benefits {
  scroll-margin-top: 6.875rem;
}
@media screen and (max-width: 768px) {
  #seminar,
  #selesforce-benefits {
    scroll-margin-top: 3.75rem;
  }
}
.inner {
  padding-left: 1.5625rem;
  padding-right: 1.5625rem;
  max-width: 65.125rem;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .inner {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    max-width: 37.5rem;
  }
}

@media screen and (max-width: 768px) {
  .md-none {
    display: none;
  }
}

.md-show {
  display: none;
}
@media screen and (max-width: 768px) {
  .md-show {
    display: block;
  }
}

header a,
footer a,
.related-product__scroll-content a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
header a:hover,
footer a:hover,
.related-product__scroll-content a:hover {
  opacity: 0.7;
  cursor: pointer;
}

.section-title__wrap {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .section-title__wrap {
    text-align: left;
  }
}

.section-title {
  font-size: 1.625rem;
  line-height: 1.38461538;
  font-weight: 700;
  color: #00A1E0;
}
@media screen and (max-width: 768px) {
  .section-title {
    font-size: 1.125rem;
    line-height: 2;
  }
}

.title {
  text-align: center;
  font-size: 1.625rem;
  line-height: 1.875;
  line-height: 1.384615;
  font-weight: 700;
  color: #00A1E0;
}
@media screen and (max-width: 768px) {
  .title {
    font-size: 1.25rem;
    line-height: 1.5;
  }
}

.text {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.875;
  color: #192636;
}
@media screen and (max-width: 768px) {
  .text {
    font-size: 0.9375rem;
    line-height: 2;
  }
}

.icon-logo a {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

.icon-logo a:hover {
  -webkit-transition: none;
  transition: none;
  opacity: 1;
}

.icon-logo img {
  max-width: 6.75rem;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1320px) {
  .icon-logo img {
    max-width: 5.5rem;
  }
}
@media screen and (max-width: 768px) {
  .icon-logo img {
    max-width: 3.5625rem;
  }
}

.icon-logo .logo-name {
  position: absolute;
  left: 2.1875rem;
  top: 1.5625rem;
  font-size: 1.375rem;
  font-weight: 700;
  color: #00A1E0;
}
@media screen and (max-width: 1320px) {
  .icon-logo .logo-name {
    font-size: 1.125rem;
    top: 1.75rem;
  }
}
@media screen and (max-width: 768px) {
  .icon-logo .logo-name {
    font-size: 0.8125rem;
    left: 1.25rem;
    top: 0.8125rem;
  }
}
@media screen and (max-width: 500px) {
  .icon-logo .logo-name {
    font-size: 0.75rem;
  }
}

.icon-logo p {
  position: absolute;
  left: 2.1875rem;
  top: 3.75rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #192636;
  line-height: 1;
  letter-spacing: 0;
}
@media screen and (max-width: 1320px) {
  .icon-logo p {
    font-size: 0.6875rem;
    top: 3.4375rem;
  }
}
@media screen and (max-width: 768px) {
  .icon-logo p {
    font-size: 0.5rem;
    left: 1.25rem;
    top: 2rem;
  }
}
@media screen and (max-width: 500px) {
  .icon-logo p {
    top: 1.9375rem;
    left: 1.25rem;
  }
}

.icon-logo p span {
  font-weight: 400;
  color: #5F5F5F;
}

/* ======================================================================
   404 Page (p-errorPage)
   - 画面中央のレイアウト
   - 淡いグレー背景
   - 背景に大きな透過「404」
   - 行動導線（ホーム / サイトマップ）
   - モバイル優先でメディアクエリ対応
   ====================================================================== */

   .p-errorPage {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 4rem 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    min-height: 75vh;
  }
  @media screen and (min-width: 768px) {
    .p-errorPage {
      padding: 6rem 0;
      min-height: 80vh;
    }
  }
  
  .p-errorPage__inner {
    position: relative;
    width: 100%;
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
    padding: 2.5rem 1.25rem;
    background-color: #ffffff;
    border-radius: 1rem;
    box-shadow: 0 0.5rem 2rem rgba(0, 161, 224, 0.08);
  }
  @media screen and (min-width: 768px) {
    .p-errorPage__inner {
      padding: 4rem 3rem;
      border-radius: 1.25rem;
      box-shadow: 0 0.625rem 2.5rem rgba(0, 161, 224, 0.08);
    }
  }
  
  .p-errorPage__bgNumber {
    position: absolute;
    left: 50%;
    top: 45%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-size: clamp(8rem, 25vw, 16rem);
    font-weight: 900;
    color: #00a1e0;
    letter-spacing: 0.05em;
    line-height: 1;
    opacity: 0.04;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    white-space: nowrap;
    font-family: "Poppins", sans-serif;
  }
  
  .p-errorPage__illustration {
    margin: 0 auto;
    width: 200px;
  }
  @media screen and (max-width: 768px) {
    .p-errorPage__illustration {
      width: 160px;
    }
  }
  
  .p-errorPage__title {
    margin-top: 2rem;
    font-size: clamp(1.625rem, 4.2vw, 2.5rem);
    font-weight: 700;
    color: #192636;
    letter-spacing: 0.02em;
    line-height: 1.4;
  }
  @media screen and (max-width: 768px) {
    .p-errorPage__title {
      margin-top: 1.5rem;
    }
  }
  
  .p-errorPage__subtitle {
    margin-top: 0.5rem;
    font-size: clamp(0.875rem, 2.2vw, 1rem);
    font-weight: 600;
    color: #00a1e0;
    letter-spacing: 0.08em;
    line-height: 1.5;
    text-transform: uppercase;
    font-family: "Poppins", sans-serif;
  }
  
  .p-errorPage__message {
    margin-top: 1.25rem;
    font-size: clamp(0.9375rem, 2.5vw, 1.0625rem);
    font-weight: 400;
    color: #5f5f5f;
    letter-spacing: 0.02em;
    line-height: 1.8;
  }
  
  .p-errorPage__countdown {
    margin-top: 1.5rem;
    padding: 0.875rem 1.5rem;
    font-size: clamp(0.875rem, 2.3vw, 1rem);
    font-weight: 500;
    color: #00a1e0;
    letter-spacing: 0.02em;
    line-height: 1.6;
    background-color: rgba(0, 161, 224, 0.06);
    border-radius: 0.5rem;
    display: inline-block;
  }
  @media screen and (max-width: 768px) {
    .p-errorPage__countdown {
      margin-top: 1.25rem;
      padding: 0.75rem 1.25rem;
    }
  }
  
  .p-errorPage__countdown #seconds {
    font-size: clamp(1.25rem, 3.2vw, 1.625rem);
    font-weight: 700;
    color: #00a1e0;
    margin: 0 0.25rem;
  }
  
  .p-errorPage__actions {
    margin-top: 2rem;
  }
  @media screen and (min-width: 768px) {
    .p-errorPage__actions {
      margin-top: 2.5rem;
    }
  }
  
  .p-errorPage__button {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.02em;
    line-height: 1.5;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    text-decoration: none;
    background-color: #00a1e0;
    box-shadow: 0 0.25rem 0.75rem rgba(0, 161, 224, 0.25);
    position: relative;
    overflow: hidden;
  }
  @media screen and (max-width: 768px) {
    .p-errorPage__button {
      padding: 0.875rem 2rem;
      font-size: 0.9375rem;
    }
  }
  .p-errorPage__button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.2),
      transparent
    );
    -webkit-transition: left 0.5s ease;
    transition: left 0.5s ease;
  }
  .p-errorPage__button:hover::before {
    left: 100%;
  }
  .p-errorPage__button:hover,
  .p-errorPage__button:focus-visible {
    background-color: #0089c2;
    box-shadow: 0 0.375rem 1.25rem rgba(0, 161, 224, 0.35);
    transform: translateY(-2px);
  }
  @media screen and (min-width: 768px) {
    .p-errorPage__button {
      padding: 1.125rem 3rem;
      font-size: 1.0625rem;
    }
  }
  
  /* ===== End of 404 Page (p-errorPage) ===== */
  
  /*# sourceMappingURL=styles.css.map */
