@media (max-width: 1280px) {
  .xl_only {
    display: none;
  }
}

@media (max-width: 1024px) {
  .pc_only {
    display: none;
  }
}

.sp_only {
  display: none;
}
@media (max-width: 768px) {
  .sp_only {
    display: block;
  }
}

.tb_only {
  display: none;
}
@media (max-width: 1024px) {
  .tb_only {
    display: block;
  }
}
@media (max-width: 768px) {
  .tb_only {
    display: none;
  }
}

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

.tb_sp {
  display: none;
}
@media (max-width: 1024px) {
  .tb_sp {
    display: block;
  }
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 1.66667;
  color: #1C1C1C;
}

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

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: #1C1C1C;
}

.section__title {
  font-family: "Noto Serif JP", serif;
  font-size: 2.5em;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 1.875rem;
}
@media (max-width: 768px) {
  .section__title {
    font-size: 2rem;
  }
}
.section__title-sub, .section__title-main {
  display: block;
}
.section__title-sub {
  font-size: 0.55em;
  margin-bottom: 6px;
}
@media (max-width: 768px) {
  .section__title-sub {
    font-size: 0.65625em;
  }
}
.section__title .blue {
  color: #2A6AB2;
}

.header {
  background-color: #fff;
  height: 80px;
  -webkit-box-shadow: 0px 1px 0px 0px #D9D9D9;
          box-shadow: 0px 1px 0px 0px #D9D9D9;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}
@media (max-width: 768px) {
  .header {
    height: 67px;
  }
}
.header__inner {
  height: 100%;
  padding: 1.625em 2.08333%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1024px) {
  .header__inner {
    padding: 1.25em 1.6875em 1.25em 1.25em;
  }
}
.header__logo {
  width: 160px;
}
@media (max-width: 1024px) {
  .header__logo {
    width: 153px;
  }
}
.header__logo img {
  width: 100%;
  height: 100%;
}
.header__menu {
  width: 75%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 11.3%;
}
@media (max-width: 1280px) {
  .header__menu {
    width: 80%;
    gap: 5%;
  }
}
@media (max-width: 1024px) {
  .header__menu {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    background-color: #fff;
    padding: 1.25em;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .header__menu.is-open {
    display: block;
  }
}
.header__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.875em;
}
@media (max-width: 1280px) {
  .header__list {
    gap: 1em;
  }
}
@media (max-width: 1024px) {
  .header__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 2em;
  }
}
.header__item a {
  display: block;
  font-weight: 700;
  line-height: 1;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  padding: 1em 0;
  position: relative;
  white-space: nowrap;
}
@media (max-width: 1024px) {
  .header__item a {
    padding: 0.5em 0;
  }
}
.header__item a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  background-color: #2A6AB2;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.header__item a:hover {
  color: #2A6AB2;
}
.header__item a:hover::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.header__cta {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.875em;
}
@media (max-width: 1280px) {
  .header__cta {
    gap: 1em;
  }
}
@media (max-width: 1024px) {
  .header__cta {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.header__tel-upper, .header__tel-lower {
  display: block;
}
.header__tel-upper {
  font-family: "Inter", sans-serif;
  font-size: 1.460625em;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-bottom: 2.9px;
  white-space: nowrap;
}
.header__tel-upper::before {
  content: "";
  width: 14.2px;
  height: 18.5px;
  display: inline-block;
  background: url(../img/icon_tel-navy.svg) no-repeat center center/contain;
  margin-right: 4.2px;
}
.header__tel-lower {
  font-size: 0.835em;
  font-family: "Inter", sans-serif;
  line-height: 1.2;
}
.header__contact a {
  color: #fff;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  text-align: center;
  display: block;
  background-color: #FF852B;
  border-radius: 50px;
  width: 229px;
  height: 56px;
  line-height: 52px;
  border: 2px solid #FF852B;
  -webkit-box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.15);
  -webkit-transition: background-color 0.3s ease, color 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.header__contact a:hover {
  background-color: #fff;
  color: #FF852B;
}
.header__btn {
  display: none;
  position: relative;
  width: 30px;
  height: 20px;
  cursor: pointer;
}
@media (max-width: 1024px) {
  .header__btn {
    display: block;
  }
}
.header__btn .bar {
  width: 100%;
  height: 3px;
  background-color: #003366;
  position: absolute;
  left: 0;
}
.header__btn .bar:nth-child(1) {
  top: 0;
}
.header__btn .bar:nth-child(2) {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.header__btn .bar:nth-child(3) {
  bottom: 0;
}

.hero__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 2.5%;
  padding-top: 8em;
  padding-bottom: 4em;
  padding-right: 3.145625em;
  max-width: 1440px;
  margin: 0 auto;
}
@media (max-width: 1280px) {
  .hero__inner {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (max-width: 1024px) {
  .hero__inner {
    padding-top: 6.125em;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    padding-bottom: 1.575rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.hero__left {
  width: 56%;
  padding-top: 1.5em;
}
@media (max-width: 1024px) {
  .hero__left {
    width: 100%;
    padding-top: 0;
  }
}
.hero__label {
  display: inline-block;
  background-color: #003366;
  color: #fff;
  font-size: 1.125em;
  font-weight: 700;
  line-height: 1;
  padding: 0.6em 0.6em 0.6em 2.5em;
  margin-bottom: 1.25rem;
}
@media (max-width: 1024px) {
  .hero__label {
    margin-left: -1.25rem;
  }
}
@media (max-width: 768px) {
  .hero__label {
    font-size: 1rem;
    padding: 10px 10px 13px 25px;
  }
}
@media (max-width: 399px) {
  .hero__label {
    padding: 10px;
  }
}
.hero__container {
  text-align: center;
  margin-left: 2.125rem;
}
@media (max-width: 1024px) {
  .hero__container {
    margin-left: 0;
  }
}
.hero__title {
  font-family: "Noto Serif JP", serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.125rem;
}
@media (max-width: 768px) {
  .hero__title {
    margin-bottom: 0.65rem;
  }
}
.hero__title-sub {
  display: block;
  font-size: 2.375em;
  text-align: left;
  margin-bottom: 1rem;
  padding-left: 6px;
}
@media (max-width: 1024px) {
  .hero__title-sub {
    padding-left: 0;
    font-size: 1.75em;
    margin-bottom: 0.5rem;
  }
}
.hero__title-sub .small {
  font-size: 2.1875rem;
}
@media (max-width: 1024px) {
  .hero__title-sub .small {
    font-size: 1.5625rem;
  }
}
.hero__title-main {
  display: block;
  font-size: 3.4375em;
  color: #003366;
  margin-left: -0.3em;
}
@media (max-width: 1024px) {
  .hero__title-main {
    font-size: 2.6387em;
    margin-left: 0;
  }
}
@media (max-width: 768px) {
  .hero__title-main {
    text-align: left;
  }
}
@media (max-width: 399px) {
  .hero__title-main {
    font-size: 2.5em;
  }
}
.hero__title-main .big {
  font-size: 1.072727em;
}
@media (max-width: 768px) {
  .hero__title-main .big {
    font-size: 1.043581em;
  }
}
.hero__title-main .nowrap {
  white-space: nowrap;
}
.hero__title-main .spacing1, .hero__title-main .spacing3 {
  letter-spacing: -0.1em;
}
.hero__title-main .spacing2 {
  letter-spacing: -0.15em;
}
.hero__title-main .spacing4 {
  letter-spacing: -0.05em;
}
.hero__contents {
  padding-right: 3%;
  margin-left: 0.4em;
}
@media (max-width: 768px) {
  .hero__contents {
    padding-right: 0;
    margin-left: 0;
  }
}
.hero__text {
  font-family: "Noto Serif JP", serif;
  font-size: 1.383125em;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  color: #003366;
  padding: 0.7em 0;
  border-top: 1px solid #003366;
  border-bottom: 1px solid #003366;
  margin: 0 auto 1.875rem;
}
@media (max-width: 768px) {
  .hero__text {
    font-size: 1.125em;
    text-align: left;
    line-height: 1.5;
    padding: 10px 0;
    margin-bottom: 1.25rem;
  }
}
.hero__text span {
  display: block;
}
.hero__text .nowrap {
  white-space: nowrap;
}
@media (max-width: 1024px) {
  .hero__cta {
    width: 100vw;
    margin: 4.5em calc(50% - 50vw) 0;
    padding: 0 10px;
  }
}
.hero__cta-btn {
  max-width: 383px;
  height: 84px;
  margin: 0 auto 0.3em;
}
.hero__cta-btn a {
  display: block;
  height: 100%;
  background-color: #FF852B;
  color: #fff;
  text-align: center;
  display: block;
  padding: 1.125em 0;
  border-radius: 60px;
  background-color: #FF852B;
  -webkit-box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.15);
  position: relative;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.hero__cta-btn a:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.25);
}
@media (max-width: 768px) {
  .hero__cta-btn a:hover {
    -webkit-transform: inherit;
            transform: inherit;
  }
}
.hero__cta-btn a .inter, .hero__cta-btn a .small {
  display: block;
}
.hero__cta-btn a .inter {
  font-family: "Inter", sans-serif;
  font-size: 1.25em;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 6px;
}
.hero__cta-btn a .small {
  font-size: 0.875em;
  line-height: 1.2;
}
.hero__cta-btn a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.75rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 31px;
  height: 14px;
  display: block;
  background: url(../img/btn_arrow-white.svg) no-repeat center center/contain;
}
.hero__cta-note {
  text-align: center;
}
.hero__right {
  width: 41.5%;
  position: relative;
}
@media (max-width: 1024px) {
  .hero__right {
    width: 100%;
  }
}
@media (max-width: 1024px) {
  .hero__image {
    max-width: 400px;
    margin: 0 auto;
  }
}
.hero__image img {
  width: 100%;
  max-height: 440px;
  -o-object-fit: contain;
     object-fit: contain;
}
.hero__badges {
  width: 61.734%;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 17.857%);
          transform: translate(-50%, 17.857%);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  margin-left: 0.6em;
}
@media (max-width: 1024px) {
  .hero__badges {
    width: 100%;
    max-width: 346px;
    margin: 0 auto;
    -webkit-transform: translate(-50%, 40%);
            transform: translate(-50%, 40%);
  }
}
@media (max-width: 768px) {
  .hero__badges {
    gap: 5px;
  }
}
@media (max-width: 399px) {
  .hero__badges {
    padding: 0 1em;
  }
}
.hero__badge {
  -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.15);
}

.concerns {
  background-color: #003366;
  position: relative;
}
.concerns::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translate(-50%, -1px);
          transform: translate(-50%, -1px);
  width: 0;
  height: 0;
  display: block;
  border-style: solid;
  border-right: 37.5px solid transparent;
  border-left: 37.5px solid transparent;
  border-top: 30px solid #003366;
  border-bottom: 0;
}
@media (max-width: 768px) {
  .concerns::after {
    border-right: 32.5px solid transparent;
    border-left: 32.5px solid transparent;
    border-top: 28px solid #003366;
  }
}
.concerns__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  padding: 3.75em 30px 4em;
}
@media (max-width: 768px) {
  .concerns__inner {
    padding: 3em 20px 1.875em;
  }
}
.concerns__title {
  font-family: "Noto Serif JP", serif;
  font-size: 1rem;
  text-align: center;
  color: #fff;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .concerns__title {
    margin-bottom: 1.875rem;
  }
}
.concerns__title-sub, .concerns__title-main {
  display: block;
  line-height: 1.2;
}
.concerns__title-sub {
  font-size: 1.25em;
  margin-bottom: 6px;
}
@media (max-width: 768px) {
  .concerns__title-sub {
    font-size: 1.01875rem;
  }
}
.concerns__title-sub .big {
  font-size: 1.25em;
}
@media (max-width: 768px) {
  .concerns__title-sub .big {
    font-size: 1.25em;
  }
}
.concerns__title-main {
  font-size: 1.875em;
}
@media (max-width: 768px) {
  .concerns__title-main {
    font-size: 1.52875rem;
  }
}
@media (max-width: 399px) {
  .concerns__title-main {
    font-size: 1.375rem;
  }
}
.concerns__title-main .big {
  font-size: 1.3333em;
}
.concerns__list {
  padding: 1.875em;
  background-color: #fff;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3125em 2.64%;
}
@media (max-width: 1280px) {
  .concerns__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .concerns__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 5px;
    padding: 10px;
  }
}
.concerns__item {
  background-color: #EAF0F7;
  min-height: 100px;
}
@media (max-width: 768px) {
  .concerns__item {
    min-height: 105px;
  }
}
.concerns__item p {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 1.125em;
  line-height: 1.2;
  text-align: center;
}
@media (max-width: 768px) {
  .concerns__item p {
    font-size: 1rem;
  }
}
.concerns__item p > span {
  white-space: nowrap;
}
.concerns__item p strong {
  font-size: 1.16667em;
  font-weight: 700;
}
@media (max-width: 768px) {
  .concerns__item p strong {
    font-size: 1.1875rem;
  }
}

.solution {
  background: #EAF0F7 url(../img/solution_bg.jpg) no-repeat bottom center/contain;
}
@media (max-width: 768px) {
  .solution {
    background: #EAF0F7 url(../img/solution_bg-sp.jpg) no-repeat bottom center/contain;
  }
}
.solution__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 3.75em 20px 16.875em;
}
@media (max-width: 768px) {
  .solution__inner {
    padding-top: 2.625em;
    padding-bottom: 12.9375em;
  }
}
.solution__container {
  padding: 3.25em 1.25rem 4em;
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 14px 0px rgba(0, 0, 14, 0.1);
          box-shadow: 0px 0px 14px 0px rgba(0, 0, 14, 0.1);
}
@media (max-width: 768px) {
  .solution__container {
    padding: 1.875em 10px 2.1875em;
  }
}
@media (max-width: 768px) {
  .solution__title {
    font-size: 1.765em;
    margin-bottom: 0.945625rem;
  }
}
.solution__title-sub {
  font-size: 0.625em;
}
@media (max-width: 768px) {
  .solution__title-sub {
    font-size: 0.75354em;
  }
}
.solution__lead {
  text-align: center;
  margin-bottom: 3.5em;
}
@media (max-width: 768px) {
  .solution__lead {
    margin-bottom: 1.625rem;
  }
}
.solution__desc {
  display: inline-block;
  font-size: 1.875em;
  font-weight: 700;
  line-height: 1.3;
  position: relative;
}
@media (max-width: 768px) {
  .solution__desc {
    font-size: 1.17125em;
    line-height: 1.46211;
  }
}
@media (max-width: 399px) {
  .solution__desc {
    font-size: 1em;
  }
}
.solution__desc .blue {
  color: #2A6AB2;
}
.solution__desc .nowrap {
  white-space: nowrap;
}
.solution__desc .note {
  position: absolute;
  bottom: 100%;
  right: 15px;
  font-size: 0.625rem;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .solution__desc .note {
    position: static;
    display: block;
    margin-top: 5.24px;
  }
}
.solution__lower {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 1046px;
  margin: 0 auto;
  gap: 20px;
}
@media (max-width: 1280px) {
  .solution__lower {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 30px;
  }
}
@media (max-width: 768px) {
  .solution__lower {
    gap: 15px;
  }
}
.solution__image {
  width: 37.5%;
  max-width: 392px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
@media (max-width: 1280px) {
  .solution__image {
    width: 100%;
  }
}
@media (max-width: 1024px) {
  .solution__image {
    gap: 8.32px;
  }
}
@media (max-width: 1024px) {
  .solution__image-badge {
    width: 110.26px;
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
  }
}
.solution__image-contents {
  max-width: 255px;
}
.solution__image-logo {
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .solution__image-logo {
    max-width: 196.5px;
  }
}
.solution__image-text {
  font-size: 0.5625em;
}
@media (max-width: 768px) {
  .solution__image-text {
    font-size: 0.486875em;
  }
}
.solution__text {
  width: 62.5%;
  max-width: 634px;
  font-size: 1.3125em;
  line-height: 1.6667;
}
@media (max-width: 1280px) {
  .solution__text {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .solution__text {
    font-size: 1.125em;
    text-align: center;
    line-height: 1.3889;
  }
}
@media (max-width: 399px) {
  .solution__text {
    font-size: 1em;
  }
}

.difference__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  padding: 6.25em 20px 4em;
}
@media (max-width: 768px) {
  .difference__inner {
    padding: 2.5em 12px;
  }
}
@media (max-width: 768px) {
  .difference__title {
    margin-bottom: 1.25rem;
  }
}
.difference__title .nowrap {
  white-space: nowrap;
}
.difference__text {
  font-size: 1.375em;
  line-height: 1.38;
  text-align: center;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .difference__text {
    font-size: 1.125em;
    line-height: 1.6;
    margin-bottom: 3.0625rem;
  }
}
@media (max-width: 399px) {
  .difference__text {
    font-size: 1em;
  }
}
.difference__comparison {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
@media (max-width: 1024px) {
  .difference__comparison {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0 8px;
  }
}
.difference__column {
  width: 50%;
}
@media (max-width: 1024px) {
  .difference__column {
    width: 100%;
  }
}
.difference__column.--left {
  background-color: #d9d9d9;
}
.difference__column.--left .difference__label {
  background-color: #666;
}
.difference__column.--left .difference__goal {
  font-size: 1.473125em;
  margin-bottom: 1.25rem;
}
@media (max-width: 1280px) {
  .difference__column.--left .difference__goal {
    font-size: 1.375em;
  }
}
@media (max-width: 768px) {
  .difference__column.--left .difference__goal {
    font-size: 0.99375rem;
    margin-bottom: 0.9em;
  }
}
@media (max-width: 399px) {
  .difference__column.--left .difference__goal {
    font-size: 0.875rem;
  }
}
.difference__column.--left .difference__goal::before {
  background: url(../img/icon_flag-gray.svg) no-repeat center center/contain;
}
.difference__column.--left .difference__image {
  margin: 0 auto;
  max-width: 462px;
}
.difference__column.--right {
  background-color: #EAF0F7;
}
.difference__column.--right .difference__label {
  background-color: #2A6AB2;
}
.difference__column.--right .difference__goal {
  font-size: 1.75em;
  margin-bottom: 0.875rem;
  color: #2A6AB2;
}
@media (max-width: 768px) {
  .difference__column.--right .difference__goal {
    font-size: 1.134375rem;
    margin-bottom: 0.3rem;
  }
}
.difference__column.--right .difference__goal::before {
  background: url(../img/icon_flag-orange.svg) no-repeat center center/contain;
}
.difference__column.--right .difference__image {
  padding-left: 2.7%;
}
@media (max-width: 1024px) {
  .difference__column.--right .difference__image {
    margin: 0 auto;
    max-width: 462px;
    padding-left: 0;
  }
}
.difference__label {
  font-family: "Noto Serif JP", serif;
  font-size: 1.5625em;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  padding: 1.375rem 0;
  color: #fff;
}
@media (max-width: 768px) {
  .difference__label {
    font-size: 1.044375rem;
    padding: 12px 0;
  }
}
.difference__contents {
  padding: 2.375em 5% 1.675em;
  text-align: center;
}
@media (max-width: 768px) {
  .difference__contents {
    padding: 1rem 4.6% 1.1rem;
  }
}
.difference__goal {
  font-weight: 700;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6.5px;
}
.difference__goal::before {
  content: "";
  display: inline-block;
  width: 31px;
  height: 33px;
}
@media (max-width: 768px) {
  .difference__goal::before {
    width: 20.92px;
    height: 22.26px;
  }
}
.difference__desc {
  font-size: 1.473125em;
  line-height: 1.188;
  font-weight: 700;
  margin-bottom: 1.25rem;
}
@media (max-width: 1280px) {
  .difference__desc {
    font-size: 1.25em;
  }
}
@media (max-width: 768px) {
  .difference__desc {
    font-size: 0.99375rem;
    line-height: 1.195;
  }
}
@media (max-width: 399px) {
  .difference__desc {
    font-size: 0.9375em;
  }
}
.difference__image picture img {
  width: 100%;
  max-width: 470px;
}
@media (max-width: 1024px) {
  .difference__image picture img {
    width: 100%;
  }
}

.features__inner {
  padding-top: 4.125em;
}
@media (max-width: 768px) {
  .features__inner {
    padding-top: 2.5em;
  }
}
.features__title {
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .features__title {
    margin-bottom: 2.1rem;
  }
}
.features__item:nth-child(2n-1) {
  background-color: #003366;
  color: #fff;
}
.features__item:nth-child(2n-1) .features__item-number {
  color: rgba(255, 255, 255, 0.1);
}
.features__item:nth-child(2n-1) .features__item-point::before {
  background: url(../img/icon_check-white.svg) no-repeat center center/contain;
}
.features__item:nth-child(2n) .features__item-number {
  color: rgba(0, 51, 102, 0.1);
}
.features__item:nth-child(2n) .features__item-headline {
  color: #003366;
}
.features__item:nth-child(2n) .features__item-lower {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media (max-width: 1024px) {
  .features__item:nth-child(2n) .features__item-lower {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.features__item:nth-child(2n) .features__item-point::before {
  background: url(../img/icon_check-black.svg) no-repeat center center/contain;
}
.features__item:nth-child(1) .features__item-headline span {
  letter-spacing: -0.4em;
}
.features__item:nth-child(2) .features__item-headline span {
  letter-spacing: -0.5em;
}
.features__item:nth-child(3) .features__item-headline span {
  letter-spacing: -0.5em;
}
.features__item-inner {
  max-width: 1188px;
  margin: 0 auto;
  padding: 5.8em 20px 4.5em 35px;
}
@media (max-width: 768px) {
  .features__item-inner {
    padding: 2.1em 18px 3.75em;
  }
}
.features__item-upper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.4em;
  margin-bottom: 2.7em;
}
@media (max-width: 1280px) {
  .features__item-upper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (max-width: 768px) {
  .features__item-upper {
    gap: 1.25em;
    margin-bottom: 1.25rem;
  }
}
.features__item-number {
  font-family: "Noto Serif JP", serif;
  font-size: 6.989375em;
  font-weight: 700;
  color: rgba(0, 51, 102, 0.1);
  line-height: 0.75;
  letter-spacing: -0.05em;
  width: 133px;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
@media (max-width: 1280px) {
  .features__item-number {
    line-height: 1;
  }
}
@media (max-width: 768px) {
  .features__item-number {
    font-size: 5.176875rem;
  }
}
.features__item-content {
  width: calc(100% - 153px);
}
@media (max-width: 1280px) {
  .features__item-content {
    width: 100%;
  }
}
.features__item-headline {
  font-family: "Noto Serif JP", serif;
  font-size: 2.375em;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.125rem;
}
@media (max-width: 768px) {
  .features__item-headline {
    font-size: 1.75em;
    line-height: 1.4;
    margin-bottom: 0.625rem;
  }
}
@media (max-width: 399px) {
  .features__item-headline {
    font-size: 1.5em;
  }
}
.features__item-text {
  font-size: 1.375em;
  line-height: 1.59;
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .features__item-text {
    font-size: 1em;
    line-height: 1.5625;
  }
}
.features__item-lower {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 5%;
  -webkit-transform: translateX(25px);
          transform: translateX(25px);
}
@media (max-width: 1024px) {
  .features__item-lower {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 550px;
    margin: 0 auto;
    gap: 1.25rem;
    -webkit-transform: inherit;
            transform: inherit;
  }
}
@media (max-width: 768px) {
  .features__item-lower {
    max-width: 360px;
  }
}
.features__item-image {
  width: 36.2%;
}
@media (max-width: 1024px) {
  .features__item-image {
    width: 100%;
    position: relative;
  }
  .features__item-image::before {
    content: "";
    display: block;
    padding-top: 57.79%;
  }
  .features__item-image img, .features__item-image video, .features__item-image iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}
.features__item-points {
  width: 50%;
}
@media (max-width: 1024px) {
  .features__item-points {
    width: 100%;
  }
}
.features__item-point {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 10px;
  font-size: 1.375em;
  line-height: 1.59;
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .features__item-point {
    font-size: 1em;
    line-height: 1.5625;
    gap: 6.58px;
  }
}
@media (max-width: 399px) {
  .features__item-point {
    font-size: 0.875em;
  }
}
.features__item-point:nth-child(n+2) {
  margin-top: 1.25rem;
}
@media (max-width: 399px) {
  .features__item-point:nth-child(n+2) {
    margin-top: 0.875rem;
  }
}
.features__item-point::before {
  content: "";
  display: inline-block;
  margin-top: 6.5px;
  width: 18px;
  height: 17px;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
@media (max-width: 768px) {
  .features__item-point::before {
    width: 12.42px;
    height: 11.73px;
  }
}

.advisors__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  padding: 5em 20px 6.25em;
}
@media (max-width: 768px) {
  .advisors__inner {
    padding: 4.375em 20px 3.125em;
  }
}
.advisors__title {
  margin-bottom: 5px;
}
@media (max-width: 768px) {
  .advisors__title {
    margin-bottom: 1.25rem;
  }
}
.advisors__subtitle {
  font-size: 1.125em;
  text-align: center;
  margin-bottom: 3.5rem;
}
@media (max-width: 768px) {
  .advisors__subtitle {
    line-height: 1.2;
    margin-bottom: 1.75em;
  }
}
.advisors__item {
  padding: 3.125em 3% 3.125em 5.9%;
  background-color: #F9F9F9;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
}
@media (max-width: 768px) {
  .advisors__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.4375em;
    padding: 2.5em 1.25rem;
  }
}
.advisors__item:nth-child(n+2) {
  margin-top: 1.75em;
}
@media (max-width: 768px) {
  .advisors__item:nth-child(n+2) {
    margin-top: 1.25em;
  }
}
.advisors__item-info {
  width: 209px;
}
.advisors__item-image {
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 1.125em;
}
.advisors__item-content {
  text-align: center;
}
.advisors__item-name {
  font-size: 1rem;
  line-height: 1.2;
  padding-bottom: 10px;
  border-bottom: 1px solid #d9d9d9;
  margin-bottom: 10px;
}
.advisors__item-name .jp, .advisors__item-name .en {
  display: block;
}
.advisors__item-name .jp {
  font-size: 1.5em;
  font-weight: 700;
  margin-bottom: 5px;
}
.advisors__item-name .en {
  font-size: 0.75em;
}
.advisors__item-position {
  font-size: 0.875em;
  font-weight: 700;
  line-height: 1.2;
}
.advisors__item-career {
  width: calc(100% - 259px);
}
@media (max-width: 768px) {
  .advisors__item-career {
    width: 100%;
  }
}
.advisors__item-career-title {
  font-size: 1.375em;
  font-weight: 700;
  line-height: 1.1818;
  color: #003366;
  max-width: 246.5px;
  padding-bottom: 0.625rem;
  border-bottom: 1px solid #EAF0F7;
  margin-bottom: 0.8125rem;
  position: relative;
}
.advisors__item-career-title::after {
  content: "";
  position: absolute;
  bottom: -1.25px;
  left: 0;
  width: 44px;
  height: 2px;
  background-color: #003366;
  display: block;
}
.advisors__item-career-text {
  font-size: 1.125em;
  line-height: 1.9444;
}
@media (max-width: 768px) {
  .advisors__item-career-text {
    line-height: 1.6667;
  }
}
.advisors__item-career-text.--02 {
  margin-top: 15px;
}

.voices {
  background-color: #EAF0F7;
}
.voices__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  padding-top: 6.25em;
  padding-bottom: 6.25em;
}
@media (max-width: 768px) {
  .voices__inner {
    padding-top: 3.125em;
    padding-bottom: 3.125em;
  }
}
.voices__title {
  margin-bottom: 1.25rem;
}
.voices__subtitle {
  font-size: 1.125em;
  line-height: 1.222;
  text-align: center;
  margin-bottom: 2.5rem;
}
@media (max-width: 768px) {
  .voices__subtitle {
    margin-bottom: 1.625em;
  }
}
.voices__item {
  padding: 3.1875em 5% 3.125em;
  background-color: #fff;
}
@media (max-width: 768px) {
  .voices__item {
    padding: 1.5625em 1.25rem;
  }
}
.voices__item:nth-child(n+2) {
  margin-top: 1.875em;
}
@media (max-width: 768px) {
  .voices__item:nth-child(n+2) {
    margin-top: 1.25em;
  }
}
.voices__item-container {
  max-width: 1006px;
  margin: 0 auto;
}
.voices__item-upper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 1.25em;
  margin-bottom: 2.5em;
}
@media (max-width: 1280px) {
  .voices__item-upper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
@media (max-width: 1024px) {
  .voices__item-upper {
    gap: 1.553125em;
    margin-bottom: 1.5625em;
  }
}
.voices__item-headline {
  width: 51.556%;
  font-size: 2.1875em;
  line-height: 1.42857;
  font-weight: 700;
  color: #003366;
}
@media (max-width: 1280px) {
  .voices__item-headline {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .voices__item-headline {
    font-size: 1.5em;
    line-height: 1.5;
  }
}
@media (max-width: 399px) {
  .voices__item-headline {
    font-size: 1.375em;
  }
}
.voices__item-info {
  width: 48.444%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10.17px;
}
@media (max-width: 1024px) {
  .voices__item-info {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    width: 100%;
    gap: 6px;
  }
}
.voices__item-image {
  width: 144.83px;
}
@media (max-width: 768px) {
  .voices__item-image {
    width: 103px;
  }
}
.voices__item-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  width: calc(100% - 155px);
  max-width: 511px;
}
@media (max-width: 1024px) {
  .voices__item-list {
    width: calc(100% - 109px);
  }
}
.voices__item-list-title:nth-of-type(n+2), .voices__item-list-text:nth-of-type(n+2) {
  margin-top: 0.6em;
}
.voices__item-list-title {
  width: 118px;
  font-size: 1.375em;
  font-weight: 700;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .voices__item-list-title {
    width: 30%;
    font-size: 0.8575em;
  }
}
.voices__item-list-text {
  width: calc(100% - 118px);
  font-size: 1.375em;
  font-weight: 400;
  line-height: 1.2;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .voices__item-list-text {
    width: 70%;
    font-size: 0.8575em;
  }
}
@media (max-width: 399px) {
  .voices__item-list-text {
    font-size: 0.75em;
  }
}
.voices__item-content:nth-child(n+2) {
  margin-top: 2.5em;
}
@media (max-width: 768px) {
  .voices__item-content:nth-child(n+2) {
    margin-top: 1.75em;
  }
}
.voices__item-content-title {
  font-size: 1.375em;
  font-weight: 700;
  line-height: 1.1818;
  color: #003366;
  max-width: 246.5px;
  padding-bottom: 0.625rem;
  border-bottom: 1px solid #EAF0F7;
  margin-bottom: 0.625rem;
  position: relative;
}
@media (max-width: 768px) {
  .voices__item-content-title {
    font-size: 1.25em;
  }
}
.voices__item-content-title::after {
  content: "";
  position: absolute;
  bottom: -1.25px;
  left: 0;
  width: 44px;
  height: 2px;
  background-color: #003366;
  display: block;
}
.voices__item-content-text {
  font-size: 1.375em;
  line-height: 1.818;
}
@media (max-width: 768px) {
  .voices__item-content-text {
    font-size: 1.125em;
    line-height: 1.667;
  }
}
.voices__item-content-text .underline {
  text-decoration: underline;
}
.voices__item-content-text .highlight {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(50%, #FF852B));
  background: -webkit-linear-gradient(transparent 50%, #FF852B 50%);
  background: linear-gradient(transparent 50%, #FF852B 50%);
  background-size: 100% 16px;
  background-position: 0 100%;
  background-repeat: no-repeat;
}

.cta {
  background-color: #003366;
}
.cta__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  padding-top: 3.125em;
  padding-bottom: 4.34375em;
}
@media (max-width: 768px) {
  .cta__inner {
    padding-bottom: 2.8125em;
  }
}
.cta__title {
  font-family: "Noto Serif JP", serif;
  color: #fff;
  font-size: 2.5em;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 2.34375rem;
}
@media (max-width: 768px) {
  .cta__title {
    font-size: 2em;
    line-height: 1.1875;
    margin-bottom: 1.875rem;
  }
}
.cta__box {
  background-color: #fff;
  padding: 2.4em 3.1% 2.2em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 6.3%;
}
@media (max-width: 1024px) {
  .cta__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (max-width: 768px) {
  .cta__box {
    gap: 1.5em;
    padding: 1.875em 0.9375rem;
  }
}
.cta__contact {
  width: 49.3%;
  text-align: center;
}
@media (max-width: 1024px) {
  .cta__contact {
    width: 100%;
  }
}
.cta__contact-btn {
  max-width: 550px;
  height: 97px;
  margin: 0 auto 6px;
}
@media (max-width: 768px) {
  .cta__contact-btn {
    max-width: 330px;
    height: 72.53px;
    margin-bottom: 9.69px;
  }
}
.cta__contact-btn a {
  display: block;
  height: 100%;
  background-color: #FF852B;
  color: #fff;
  text-align: center;
  display: block;
  padding: 1.4375em 0;
  border-radius: 60px;
  background-color: #FF852B;
  -webkit-box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.15);
  position: relative;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media (max-width: 768px) {
  .cta__contact-btn a {
    padding: 1em 0;
  }
}
.cta__contact-btn a:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.25);
}
.cta__contact-btn a .inter, .cta__contact-btn a .small {
  display: block;
}
.cta__contact-btn a .inter {
  font-family: "Inter", sans-serif;
  font-size: 1.5em;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 6px;
}
@media (max-width: 768px) {
  .cta__contact-btn a .inter {
    font-size: 1.079375em;
    line-height: 1.2;
    margin-bottom: 5px;
  }
}
.cta__contact-btn a .small {
  font-size: 0.875em;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .cta__contact-btn a .small {
    font-size: 0.755625em;
  }
}
.cta__contact-btn a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 2.5rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 31px;
  height: 14px;
  display: block;
  background: url(../img/btn_arrow-white.svg) no-repeat center center/contain;
}
@media (max-width: 768px) {
  .cta__contact-btn a::after {
    width: 26.77px;
    height: 12.05px;
    right: 1.61875rem;
  }
}
.cta__tel {
  width: 45%;
  max-width: 450px;
  text-align: center;
}
@media (max-width: 1024px) {
  .cta__tel {
    width: 100%;
    max-width: 100%;
  }
}
.cta__tel-title {
  font-size: 1.125em;
  font-weight: 700;
  line-height: 1.2;
  padding-left: 25px;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .cta__tel-title {
    padding-left: 0;
    font-size: 0.8175em;
    margin-bottom: 6.5px;
  }
}
.cta__tel-num {
  white-space: nowrap;
}
.cta__tel-num a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 4.3px;
  font-family: "Inter", sans-serif;
  font-size: 3.3625em;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 2.9px;
}
@media (max-width: 768px) {
  .cta__tel-num a {
    font-size: 2rem;
    margin-bottom: 6.7px;
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
  }
}
.cta__tel-num a::before {
  content: "";
  width: 32.66px;
  height: 42.6px;
  display: inline-block;
  background: url(../img/icon_tel-navy.svg) no-repeat center center/contain;
  margin-right: 4.2px;
}
@media (max-width: 768px) {
  .cta__tel-num a::before {
    width: 23.74px;
    height: 30.96px;
  }
}
.cta__tel-text {
  font-size: 1.125em;
  font-family: "Inter", sans-serif;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .cta__tel-text {
    font-size: 0.8175em;
  }
}

.flow__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  max-width: 1220px;
  padding-top: 5.625em;
  padding-bottom: 3.5625em;
}
@media (max-width: 768px) {
  .flow__inner {
    padding-top: 3.125em;
    padding-bottom: 4.375em;
  }
}
.flow__title {
  margin-bottom: 1.1875rem;
}
@media (max-width: 768px) {
  .flow__title {
    margin-bottom: 1.25rem;
  }
}
.flow__subtitle {
  font-size: 1.125em;
  text-align: center;
  line-height: 1.2;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .flow__subtitle {
    line-height: 1.667;
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 399px) {
  .flow__subtitle {
    font-size: 1em;
  }
}
.flow__steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 21px 27px;
}
@media (max-width: 1024px) {
  .flow__steps {
    grid-template-columns: repeat(1, 1fr);
    gap: 13px;
  }
}
.flow__step:first-child {
  grid-column: 1/3;
}
@media (max-width: 1024px) {
  .flow__step:first-child {
    grid-column: 1/1;
  }
}
.flow__step:first-child .flow__step-title {
  margin-right: 30px;
}
.flow__step:first-child .flow__step-title::after {
  right: -29.7px;
  border-left: 30px solid #003366;
}
.flow__step:first-child .flow__cards {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1024px) {
  .flow__step:first-child .flow__cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
.flow__step:nth-child(2) .flow__step-title, .flow__step:nth-child(3) .flow__step-title {
  margin-right: 23px;
}
@media (max-width: 1024px) {
  .flow__step:nth-child(2) .flow__step-title, .flow__step:nth-child(3) .flow__step-title {
    margin-right: 30px;
  }
}
.flow__step:nth-child(2) .flow__step-title::after, .flow__step:nth-child(3) .flow__step-title::after {
  right: -22.7px;
  border-left: 23px solid #003366;
}
@media (max-width: 1024px) {
  .flow__step:nth-child(2) .flow__step-title::after, .flow__step:nth-child(3) .flow__step-title::after {
    right: -29.7px;
    border-left: 30px solid #003366;
  }
}
.flow__step:nth-child(1) .flow__card:last-child::after, .flow__step:nth-child(3) .flow__card:last-child::after {
  display: none;
}
.flow__step-title {
  background-color: #003366;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  height: 97px;
  line-height: 1.2;
  padding: 1.125em 1em 1.125em 1.125em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25em;
  position: relative;
  margin-bottom: 1.3125em;
}
@media (max-width: 768px) {
  .flow__step-title {
    height: 62px;
    padding: 1em 0.4375em;
    gap: 10px;
    margin-bottom: 10px;
  }
}
.flow__step-title .num {
  font-family: "Inter", sans-serif;
  font-size: 1.75em;
  line-height: 1.2;
  font-weight: 700;
}
@media (max-width: 768px) {
  .flow__step-title .num {
    font-size: 1.3125em;
  }
}
.flow__step-title .text {
  font-size: 1.5em;
}
@media (max-width: 768px) {
  .flow__step-title .text {
    font-size: 1.125em;
  }
}
@media (max-width: 399px) {
  .flow__step-title .text {
    font-size: 1em;
  }
}
.flow__step-title::after {
  content: "";
  position: absolute;
  top: 0;
  width: 0;
  height: 0;
  border-top: 48.5px solid transparent;
  border-bottom: 48.5px solid transparent;
}
@media (max-width: 768px) {
  .flow__step-title::after {
    border-top: 31px solid transparent;
    border-bottom: 31px solid transparent;
  }
}
.flow__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 27px;
  min-height: 241px;
}
@media (max-width: 768px) {
  .flow__cards {
    gap: 10px 21px;
    min-height: 172px;
  }
}
.flow__card {
  padding: 1em;
  background-color: #EAF0F7;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
@media (max-width: 768px) {
  .flow__card {
    padding: 1.3em 0.6em;
  }
}
@media (max-width: 1024px) {
  .flow__card:nth-child(2)::after {
    display: none;
  }
}
.flow__card::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -21px;
  width: 15.5px;
  height: 24.8px;
  background: url(../img/flow_arrow.svg) no-repeat center center/contain;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (max-width: 768px) {
  .flow__card::after {
    width: 12.28px;
    height: 18.9px;
    right: -17px;
  }
}
.flow__card-image {
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .flow__card-image img.--01-1 {
    width: 58.6px;
  }
  .flow__card-image img.--01-2 {
    width: 67.95px;
  }
  .flow__card-image img.--01-3 {
    width: 51.58px;
  }
  .flow__card-image img.--01-4 {
    width: 58.31px;
  }
  .flow__card-image img.--02-1 {
    width: 67.67px;
  }
  .flow__card-image img.--02-2 {
    width: 58.79px;
  }
  .flow__card-image img.--03-1 {
    width: 54.32px;
  }
  .flow__card-image img.--03-2 {
    width: 64.11px;
  }
}
.flow__card-title {
  font-size: 1.125em;
  color: #003366;
  text-align: center;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .flow__card-title {
    font-size: 1em;
    margin-bottom: 8px;
  }
}
@media (max-width: 399px) {
  .flow__card-title {
    font-size: 0.875em;
  }
}
.flow__card-text {
  font-family: "Inter", sans-serif;
  line-height: 1.171875;
  max-width: 202px;
}
@media (max-width: 768px) {
  .flow__card-text {
    font-size: 0.75em;
  }
}
.flow__card-text.--210 {
  max-width: 210px;
}
.flow__card-text.--211 {
  max-width: 211px;
}
.flow__card-text.--228 {
  max-width: 228px;
}

.faq {
  padding: 0 1.25rem;
}
@media (max-width: 1024px) {
  .faq {
    padding: 0;
  }
}
.faq__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  max-width: 1240px;
  padding-top: 6.25em;
  padding-bottom: 6.25em;
  margin-bottom: 6.25em;
  background-color: #F1F1F1;
}
@media (max-width: 1024px) {
  .faq__inner {
    margin-bottom: 0;
  }
}
@media (max-width: 768px) {
  .faq__inner {
    padding-top: 3.125em;
    padding-bottom: 2.375em;
    margin-bottom: 0;
  }
}
.faq__title {
  margin-bottom: 3.125rem;
}
.faq__list {
  max-width: 1044px;
  margin: 0 auto;
}
.faq__item {
  cursor: pointer;
}
.faq__item:nth-child(n+2) {
  margin-top: 1.875rem;
}
.faq__item.is-open .faq__question-icon::after {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.faq__question {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  padding-top: 0.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #d9d9d9;
  margin-bottom: 1.25rem;
}
@media (max-width: 768px) {
  .faq__question {
    padding-bottom: 0.5625em;
    margin-bottom: 0.5625em;
  }
}
.faq__question-box {
  font-family: "Inter", sans-serif;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 25px;
  font-weight: 700;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media (max-width: 768px) {
  .faq__question-box {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 10px;
  }
}
.faq__question-box .q {
  font-size: 2.5em;
  color: #003366;
  line-height: 1;
}
@media (max-width: 768px) {
  .faq__question-box .q {
    font-size: 1.75em;
  }
}
.faq__question-box .text {
  font-size: 1.75em;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .faq__question-box .text {
    font-size: 1.125em;
    line-height: 1.2222;
    padding-top: 3px;
  }
}
.faq__question-icon {
  width: 2.5em;
  height: 2.5em;
  background-color: #003366;
  border-radius: 50%;
  position: relative;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
@media (max-width: 768px) {
  .faq__question-icon {
    width: 1.9375em;
    height: 1.9375em;
  }
}
.faq__question-icon::before, .faq__question-icon::after {
  content: "";
  width: 14.5px;
  height: 2px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
}
@media (max-width: 768px) {
  .faq__question-icon::before, .faq__question-icon::after {
    width: 11.24px;
    height: 1.55px;
  }
}
.faq__question-icon::before {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.faq__question-icon::after {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.faq__answer {
  display: none;
  font-size: 1.125em;
  line-height: 1.6667;
  background-color: #fff;
  padding: 1.25rem;
}
@media (max-width: 768px) {
  .faq__answer {
    font-size: 1em;
    line-height: 1.5625;
    padding: 1.25rem 1rem;
  }
}

.philosophy {
  background-color: #EAF0F7;
}
.philosophy__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  max-width: 1218px;
  padding-top: 6.25em;
  padding-bottom: 0;
}
@media (max-width: 768px) {
  .philosophy__inner {
    padding-top: 3.1875em;
  }
}
.philosophy__title {
  font-family: "Noto Sans JP", sans-serif;
  margin-bottom: 1.3125rem;
}
@media (max-width: 768px) {
  .philosophy__title {
    margin-bottom: 1rem;
  }
}
.philosophy__desc {
  font-size: 1.875em;
  line-height: 1.3;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3.125rem;
}
@media (max-width: 768px) {
  .philosophy__desc {
    font-size: 1.125em;
    line-height: 1.4;
    margin-bottom: 2.375em;
  }
}
@media (max-width: 399px) {
  .philosophy__desc {
    font-size: 1em;
  }
}
.philosophy__container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 21px;
  padding-left: 5px;
  margin-bottom: 3.125em;
}
@media (max-width: 1024px) {
  .philosophy__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    padding-left: 0;
  }
}
@media (max-width: 768px) {
  .philosophy__container {
    gap: 20px;
    margin-bottom: 6.25em;
  }
}
.philosophy__image {
  width: 40%;
  max-width: 469px;
}
@media (max-width: 1024px) {
  .philosophy__image {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .philosophy__image {
    position: relative;
  }
  .philosophy__image::before {
    content: "";
    display: block;
    padding-top: 69.252%;
  }
  .philosophy__image img, .philosophy__image video, .philosophy__image iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}
.philosophy__image img {
  -o-object-fit: cover;
     object-fit: cover;
}
.philosophy__text {
  width: calc(60.187% - 21px);
  max-width: 653px;
  font-size: 1.125em;
  line-height: 1.6667;
}
@media (max-width: 1024px) {
  .philosophy__text {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .philosophy__text {
    max-width: 100%;
  }
}
.philosophy__subheading {
  font-family: "Noto Serif JP", serif;
  text-align: center;
  font-size: 1rem;
  margin-bottom: 1.5625em;
  margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
  .philosophy__subheading {
    margin-bottom: 1.875rem;
  }
}
.philosophy__subheading .sub, .philosophy__subheading .main {
  display: block;
}
.philosophy__subheading .sub {
  font-size: 1.125em;
  font-weight: 500;
  margin-bottom: 8px;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .philosophy__subheading .sub {
    font-size: 1.125rem;
  }
}
.philosophy__subheading .main {
  font-size: 1.875em;
  line-height: 1.3;
  font-weight: 700;
  color: #003366;
}
@media (max-width: 768px) {
  .philosophy__subheading .main {
    font-size: 1.875rem;
  }
}
.philosophy__promises {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 27px;
  margin-bottom: 5.375em;
}
@media (max-width: 1280px) {
  .philosophy__promises {
    gap: 10px;
  }
}
@media (max-width: 1024px) {
  .philosophy__promises {
    max-width: 374px;
    grid-template-columns: repeat(1, 1fr);
    margin: 0 auto 1.875em;
  }
}
.philosophy__promise {
  padding: 1.875em 0em;
  color: #fff;
  text-align: center;
}
.philosophy__promise:nth-child(1) {
  background-color: #003366;
}
.philosophy__promise:nth-child(2) {
  background-color: #1B4169;
}
.philosophy__promise:nth-child(3) {
  background-color: #2A517A;
}
.philosophy__promise-num {
  display: inline-block;
  border-bottom: 1px solid #fff;
  font-family: "Inter", sans-serif;
  font-size: 1.125em;
  line-height: 1.5;
  font-weight: 700;
  position: relative;
  margin-bottom: 8px;
}
.philosophy__promise-num::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 100%);
          transform: translate(-50%, 100%);
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 2.5px solid transparent;
  border-left: 2.5px solid transparent;
  border-top: 4.5px solid #fff;
  border-bottom: 0;
}
.philosophy__promise-text {
  font-size: 1.25em;
  line-height: 1.5;
  font-weight: 700;
}
.philosophy__members {
  margin: 0 calc(50% - 50vw) !important;
  overflow: hidden;
}
.philosophy__members-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.philosophy__members-item {
  max-width: 286px;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  margin-right: 6px;
}
.philosophy__members-item:last-child {
  margin-right: 0;
}
.philosophy__members-item img {
  width: 100%;
  height: auto;
  display: block;
}

.members-swiper {
  overflow: hidden;
}
.members-swiper .philosophy__members-list {
  -webkit-animation: slideLoop 30s linear infinite;
          animation: slideLoop 30s linear infinite;
}

@-webkit-keyframes slideLoop {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@keyframes slideLoop {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  max-width: 1380px;
  padding-top: 2.75em;
  padding-bottom: 5em;
}
@media (max-width: 768px) {
  .footer__inner {
    padding-top: 1.9375em;
  }
}
.footer__upper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 3.125em;
}
@media (max-width: 768px) {
  .footer__upper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-bottom: 0;
    margin-left: -21px;
  }
}
.footer__logo {
  max-width: 307px;
}
@media (max-width: 768px) {
  .footer__logo {
    margin-bottom: 1.875em;
  }
}
.footer__banners {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 9px;
}
@media (max-width: 768px) {
  .footer__banners {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    gap: 20px 16px;
    margin-bottom: 2.5em;
  }
}
@media (max-width: 768px) {
  .footer__banners.pc_tb {
    display: none;
  }
}
.footer__banners.sp_only {
  display: none;
}
@media (max-width: 768px) {
  .footer__banners.sp_only {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
.footer__banner {
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.footer__banner:hover {
  opacity: 0.7;
}
.footer__lower {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 1.75em;
  margin-top: 2.5em;
}
@media (max-width: 768px) {
  .footer__lower {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-top: 0;
    gap: 0;
  }
}
.footer__links {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 1.75em;
}
@media (max-width: 768px) {
  .footer__links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.4375em 0;
    margin-bottom: 1.875em;
  }
}
.footer__link a {
  display: block;
  font-size: 0.875em;
  line-height: 1;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.footer__link a:hover {
  opacity: 0.7;
}
.footer__copyright {
  font-size: 0.875em;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .footer__copyright {
    margin: 0 auto;
  }
}