@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

ul {
  list-style-type: none;
}

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

ul,
ol,
div {
  margin: 0;
  padding: 0;
}

html {
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  font-size: 10px;
  color: #303030;
  scroll-behavior: smooth;
}

main {
  overflow: hidden;
}

a {
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
}
a:hover {
  opacity: 0.7;
}

.image {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.image--100 {
  height: 100%;
}
.image--auto {
  width: auto;
}
.image--contain {
  -o-object-fit: contain;
     object-fit: contain;
}

.header {
  position: fixed;
  width: 100%;
  background-color: rgba(255, 253, 253, 0.5);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  z-index: 9999;
}
.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4rem;
  padding: 1.2rem 5.6rem;
}
@media screen and (max-width: 1180px) {
  .header__inner {
    gap: 2rem;
    padding-inline: 1.2rem;
  }
}
@media screen and (max-width: 767px) {
  .header__inner {
    gap: 0;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 0 0 0 10px;
  }
}
.header__logo {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 16.4rem;
}
@media screen and (max-width: 1180px) {
  .header__logo {
    width: 133px;
  }
}
.header__nav {
  margin-left: auto;
}
@media screen and (max-width: 1180px) {
  .header__nav {
    display: none;
  }
}
.header__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4rem;
}
.header__menu-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.8rem;
  color: #1c1e20;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  font-weight: 300;
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.header__menu-arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 0.8rem;
  height: 0.4rem;
}
@media screen and (max-width: 1180px) {
  .header__menu-arrow {
    width: 8px;
    height: 4px;
  }
}
.header__cta {
  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;
  gap: 1rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding: 1.2rem 2rem;
  border-radius: 50px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#1b8d04), to(#65c937));
  background-image: linear-gradient(to bottom, #1b8d04, #65c937);
  color: #fffdfd;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
@media screen and (max-width: 1180px) {
  .header__cta {
    margin-left: auto;
    gap: 8px;
    padding: 8px 16px;
    font-size: 12px;
  }
}
.header__cta-icon {
  display: block;
  width: 2.4rem;
  height: 2.4rem;
}
@media screen and (max-width: 1180px) {
  .header__cta-icon {
    width: 16px;
    height: 16px;
  }
}
.header__toggle {
  display: none;
}
@media screen and (max-width: 1180px) {
  .header__toggle {
    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-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 5px;
    width: 60px;
    height: 60px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
  }
}
.header__toggle-bar {
  display: block;
  width: 40px;
  height: 1px;
  background-color: #1c1e20;
  -webkit-transition: opacity 0.25s ease, -webkit-transform 0.25s ease;
  transition: opacity 0.25s ease, -webkit-transform 0.25s ease;
  transition: transform 0.25s ease, opacity 0.25s ease;
  transition: transform 0.25s ease, opacity 0.25s ease, -webkit-transform 0.25s ease;
}
@media screen and (max-width: 767px) {
  .header__toggle-bar {
    width: 20px;
  }
}
.header__drawer {
  display: none;
}
@media screen and (max-width: 1180px) {
  .header__drawer {
    display: block;
    position: absolute;
    top: calc(100% + 6px);
    left: 20px;
    right: 20px;
    padding: 32px 24px;
    border-radius: 10px;
    background-color: #fffdfd;
    -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(-8px);
            transform: translateY(-8px);
    -webkit-transition: opacity 0.25s ease, visibility 0.25s, -webkit-transform 0.25s ease;
    transition: opacity 0.25s ease, visibility 0.25s, -webkit-transform 0.25s ease;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s, -webkit-transform 0.25s ease;
  }
}
.header__drawer-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
.header__drawer-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  color: #1c1e20;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
.header.is-open .header__toggle-bar:nth-child(1) {
  -webkit-transform: translateY(6px) rotate(45deg);
          transform: translateY(6px) rotate(45deg);
}
.header.is-open .header__toggle-bar:nth-child(2) {
  opacity: 0;
}
.header.is-open .header__toggle-bar:nth-child(3) {
  -webkit-transform: translateY(-6px) rotate(-45deg);
          transform: translateY(-6px) rotate(-45deg);
}
@media screen and (max-width: 1180px) {
  .header.is-open .header__drawer {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.footer {
  width: 100%;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .footer {
    background-color: #fffcfc;
  }
}
.footer__inner {
  padding: 0 4%;
  margin: 0 auto;
  max-width: calc(1200px + 8%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 12rem;
  padding-bottom: 12rem;
}
@media screen and (max-width: 767px) {
  .footer__inner {
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .footer__inner {
    -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;
    gap: 40px;
    padding: 90px 20px;
  }
}
.footer__brand {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.4rem;
}
@media screen and (max-width: 767px) {
  .footer__brand {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 40px;
  }
}
.footer__logo {
  display: block;
  width: 25.2rem;
}
@media screen and (max-width: 767px) {
  .footer__logo {
    width: 191px;
  }
}
.footer__copyright {
  color: #686d73;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 2;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .footer__copyright {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    font-size: 12px;
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .footer__nav {
    width: 100%;
  }
}
.footer__links {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(2, -webkit-max-content);
  grid-template-rows: repeat(2, max-content);
  gap: 2.4rem 5.6rem;
}
@media screen and (max-width: 767px) {
  .footer__links {
    grid-auto-flow: row;
    grid-template-rows: none;
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.footer__link {
  color: #686d73;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0.05em;
  text-decoration: underline;
  text-underline-position: from-font;
}
@media screen and (max-width: 767px) {
  .footer__link {
    display: block;
    font-size: 14px;
    letter-spacing: 0.05em;
    text-align: center;
  }
}

.section-heading {
  position: relative;
  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;
  height: 9.6rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .section-heading {
    height: 48px;
  }
}
.section-heading--on-dark .section-heading__en {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(212, 234, 254, 0.2)), to(rgba(235, 240, 211, 0.2)));
  background-image: linear-gradient(to right, rgba(212, 234, 254, 0.2), rgba(235, 240, 211, 0.2));
}
.section-heading--on-dark .section-heading__jp {
  color: #fffdfd;
}
.section-heading__en {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-family: "Aboreto", serif;
  font-weight: 400;
  font-size: 9.6rem;
  line-height: 1;
  letter-spacing: 0.1em;
  white-space: nowrap;
  background-image: -webkit-gradient(linear, left top, right top, from(#d4eafe), to(#ebf0d3));
  background-image: linear-gradient(to right, #d4eafe, #ebf0d3);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
@media screen and (max-width: 767px) {
  .section-heading__en {
    font-size: 48px;
    letter-spacing: 0.1em;
  }
}
.section-heading__jp {
  position: relative;
  font-family: "Zen Old Mincho", serif;
  font-weight: 900;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #1c1e20;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .section-heading__jp {
    font-size: 20px;
    letter-spacing: 0.05em;
  }
}

.contact-cta {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3.2rem;
}
@media screen and (max-width: 767px) {
  .contact-cta {
    gap: 24px;
  }
}
.contact-cta__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 1.6rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid #2cb22c;
  color: #2cb22c;
  line-height: 1.5;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .contact-cta__label {
    -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: flex-start;
    gap: 4px;
    padding-bottom: 4px;
  }
}
.contact-cta__title {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .contact-cta__title {
    font-size: 16px;
  }
}
.contact-cta__note {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  font-weight: 300;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .contact-cta__note {
    font-size: 12px;
  }
}
.contact-cta__icon {
  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;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 8.4rem;
  height: 8.4rem;
  padding: 3rem;
  border-radius: 100px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#1b8d04), to(#65c937));
  background-image: linear-gradient(to bottom, #1b8d04, #65c937);
}
@media screen and (max-width: 767px) {
  .contact-cta__icon {
    width: 50px;
    height: 50px;
    padding: 16px;
  }
}

.content-card {
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 2.4rem;
  width: 100%;
  max-width: 32rem;
}
@media screen and (max-width: 767px) {
  .content-card {
    gap: 16px;
    width: 100%;
  }
}
.content-card__media {
  width: 100%;
  height: 28rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .content-card__media {
    height: 180px;
  }
}
.content-card__title {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1.75;
  letter-spacing: 0.05em;
  color: #1c1e20;
  word-break: break-word;
}
@media screen and (max-width: 767px) {
  .content-card__title {
    font-size: 20px;
  }
}
.content-card__body {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  font-weight: 300;
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0.05em;
  color: #1c1e20;
  word-break: break-word;
}
@media screen and (max-width: 767px) {
  .content-card__body {
    font-size: 14px;
  }
}

.case-card {
  display: grid;
  grid-template-columns: 1fr 25rem;
  grid-template-areas: "head  media" "more  media" "body  body";
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-column-gap: 4rem;
     -moz-column-gap: 4rem;
          column-gap: 4rem;
  row-gap: 3.2rem;
  width: 58rem;
  padding: 3.2rem 4rem;
  border-radius: 5px;
  background-color: #fffdfd;
}
@media screen and (max-width: 767px) {
  .case-card {
    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: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 16px;
    width: 100%;
    padding: 24px;
  }
}
.case-card__media {
  grid-area: media;
  width: 25rem;
  height: 18rem;
  border: 1px solid #dee3e8;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .case-card__media {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 100%;
    height: 180px;
  }
}
.case-card__head {
  grid-area: head;
  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.4rem;
}
@media screen and (max-width: 767px) {
  .case-card__head {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    gap: 0;
  }
}
.case-card__category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.6rem;
  color: #1752d9;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .case-card__category {
    gap: 12px;
    font-size: 14px;
  }
}
.case-card__dot {
  margin-top: 0.5rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background-color: #1752d9;
}
@media screen and (max-width: 767px) {
  .case-card__dot {
    width: 8px;
    height: 8px;
  }
}
.case-card__title {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 2;
  letter-spacing: 0.05em;
  color: #1c1e20;
  word-break: break-word;
}
@media screen and (max-width: 767px) {
  .case-card__title {
    font-size: 20px;
  }
}
.case-card__body {
  grid-area: body;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  font-weight: 300;
  font-size: 1.4rem;
  line-height: 2;
  letter-spacing: 0.05em;
  color: #686d73;
  word-break: break-word;
}
@media screen and (max-width: 767px) {
  .case-card__body {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    font-size: 12px;
  }
}
.case-card__more {
  grid-area: more;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.2rem;
  color: #686d73;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 2;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .case-card__more {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
    gap: 12px;
  }
}
.case-card__more-icon {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: 0.1rem;
  width: 1.2rem;
  height: 0.9rem;
}
@media screen and (max-width: 767px) {
  .case-card__more-icon {
    width: 12px;
    height: 9px;
  }
}
.case-card__more-icon img {
  display: block;
}

.bg-gradient__mesh {
  background-color: #2b984d; /* ベースカラー */
  background-image: radial-gradient(at 0% 0%, hsl(210, 84.4827586207%, 22.7450980392%) 0, transparent 50%), radial-gradient(at 50% 0%, hsl(204.6315789474, 77.2357723577%, 48.2352941176%) 0, transparent 50%), radial-gradient(at 100% 0%, hsl(215.1136363636, 77.8761061947%, 44.3137254902%) 0, transparent 50%);
}
.bg-gradient__animated, .bg-gradient__animated-psuedo::before {
  /* 4色程度のグラデーションを指定し、サイズを400%にする */
  background: linear-gradient(-45deg, #2b984d, #48c919, #093a6b, #1c8cda, #1962c9);
  background-size: 400% 400%;
  /* アニメーションの指定：15秒で無限ループ */
  -webkit-animation: gradient-animation 15s ease infinite;
          animation: gradient-animation 15s ease infinite;
}
.bg-gradient__animated-psuedo::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@-webkit-keyframes gradient-animation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes gradient-animation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  max-height: 50.5208333333vw;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .hero {
    margin-top: 80px;
    height: auto;
    max-height: 100%;
    -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: flex-start;
  }
}
.hero__photo {
  position: absolute;
  top: 0;
  right: 0;
  width: 47.9166666667vw;
  height: 100%;
  z-index: 2;
  -webkit-clip-path: polygon(13.04% 0%, 100% 0%, 100% 100%, 0% 100%);
          clip-path: polygon(13.04% 0%, 100% 0%, 100% 100%, 0% 100%);
}
@media screen and (max-width: 767px) {
  .hero__photo {
    position: relative;
    width: 100%;
    height: 192px;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    -webkit-clip-path: none;
            clip-path: none;
  }
}
.hero__photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom right;
     object-position: bottom right;
}
.hero__content {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.0833333333vw;
  padding-top: 2.0833333333vw;
  width: 60.6770833333vw;
}
@media screen and (max-width: 1500px) {
  .hero__content {
    padding-top: 5.2083333333vw;
  }
}
@media screen and (max-width: 1200px) {
  .hero__content {
    padding-top: 10.4166666667vw;
  }
}
@media screen and (max-width: 767px) {
  .hero__content {
    width: 100%;
    gap: 0;
    padding-top: 0;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.hero__lead {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.25vw;
  padding-left: 7.2916666667vw;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .hero__lead {
    padding: 20px 20px 0;
    gap: 12px;
    letter-spacing: 0.06em;
  }
}
.hero__lead-en {
  font-family: "Aboreto", serif;
  font-size: 0.8333333333vw;
  line-height: 1;
  color: #dee3e8;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .hero__lead-en {
    font-size: 12px;
    letter-spacing: 0.1em;
    line-height: 1.75;
  }
}
.hero__lead-jp {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  font-weight: 300;
  font-size: 1.6666666667vw;
  line-height: 0.9;
  color: #1c1e20;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .hero__lead-jp {
    font-size: 20px;
    line-height: 1.75;
    letter-spacing: 0.05em;
  }
}
.hero__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 7.2916666667vw;
  position: relative;
}
@media screen and (max-width: 767px) {
  .hero__title {
    padding-left: 0;
    margin-block: 20px 32px;
    height: 113px;
  }
}
.hero__title-deco {
  position: absolute;
  left: 0;
  top: 0.0260416667vw;
  width: 13.3854166667vw;
  height: 14.0625vw;
  z-index: 0;
  pointer-events: none;
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 87.5% 100%, 0% 100%);
          clip-path: polygon(0% 0%, 100% 0%, 87.5% 100%, 0% 100%);
}
.hero__title-deco img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .hero__title-deco {
    width: 72px;
    height: 100%;
    top: 0;
  }
}
.hero__title-vert {
  position: relative;
  z-index: 1;
  font-family: "Zen Old Mincho", serif;
  font-weight: 900;
  font-size: 5vw;
  line-height: 1;
  color: #fffdfd;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  letter-spacing: 0;
  width: 4.9479166667vw;
  text-align: center;
}
.hero__title-vert .hero__title-vert-no {
  font-size: 4.1666666667vw;
}
@media screen and (max-width: 767px) {
  .hero__title-vert {
    font-size: 40px;
    line-height: 1em;
    width: 47px;
    height: 100%;
    position: absolute;
    left: 14px;
    top: 1px;
    white-space: nowrap;
  }
  .hero__title-vert .hero__title-vert-no {
    font-size: 32px;
    line-height: 1em;
  }
}
.hero__title-main {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.25vw;
  margin-left: 1.0416666667vw;
}
@media screen and (max-width: 767px) {
  .hero__title-main {
    margin-left: 72px;
    gap: 0;
  }
}
.hero__title-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .hero__title-row {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.hero__title-grad {
  font-family: "Zen Old Mincho", serif;
  font-weight: 900;
  font-size: 6.6666666667vw;
  line-height: 1;
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  letter-spacing: -0.0375em;
}
@media screen and (max-width: 767px) {
  .hero__title-grad {
    font-size: 48px;
    letter-spacing: -0.05em;
  }
}
.hero__title-grad .kanji {
  letter-spacing: 0;
}
.hero__title-grad .katakana-1 {
  letter-spacing: -0.2em;
}
.hero__title-grad .katakana-2 {
  letter-spacing: -0.3em;
}
.hero__title-grad .katakana-3 {
  letter-spacing: -0.05em;
}
.hero__title-de {
  font-family: "Zen Old Mincho", serif;
  font-weight: 900;
  font-size: 5.2083333333vw;
  line-height: 1;
  color: #1c1e20;
}
@media screen and (max-width: 767px) {
  .hero__title-de {
    font-size: 36px;
  }
}
.hero__title-sub {
  font-family: "Zen Old Mincho", serif;
  font-weight: 900;
  font-size: 5.2083333333vw;
  line-height: 1;
  color: #1c1e20;
}
@media screen and (max-width: 767px) {
  .hero__title-sub {
    font-size: 40px;
  }
}
.hero__achievement {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3.75vw;
  padding: 1.25vw 15.625vw 1.25vw 7.2916666667vw;
  background-color: #f5f8f7;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .hero__achievement {
    gap: 25px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 16px 0;
    width: 100%;
  }
}
.hero__stat {
  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;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .hero__stat {
    width: 72px;
  }
}
.hero__stat-num-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.4166666667vw;
  color: #1c1e20;
}
@media screen and (max-width: 767px) {
  .hero__stat-num-row {
    gap: 4px;
  }
}
.hero__stat-num {
  font-family: "Tai Heritage Pro", serif;
  font-weight: 700;
  font-size: 3.75vw;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .hero__stat-num {
    font-size: 40px;
  }
}
.hero__stat-unit {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 1.0416666667vw;
  line-height: 0.9;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .hero__stat-unit {
    font-size: 12px;
    letter-spacing: 0.05em;
    line-height: 1.25;
  }
}
.hero__stat-label {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  font-weight: 300;
  font-size: 0.9375vw;
  line-height: 0.9;
  letter-spacing: 0.05em;
  color: #686d73;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .hero__stat-label {
    font-size: 12px;
    letter-spacing: 0.05em;
    line-height: 1.5;
  }
}
.hero__stat-divider {
  width: 0.0520833333vw;
  height: 4.1666666667vw;
  background-color: #dee3e8;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .hero__stat-divider {
    height: 79px;
  }
}
.hero__cta {
  padding-left: 7.2916666667vw;
}
@media screen and (max-width: 767px) {
  .hero__cta {
    padding-left: 0;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 24px;
    margin-bottom: 24px;
  }
}

.message {
  position: relative;
  width: 100%;
  padding-bottom: 12rem;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .message {
    padding-bottom: 10.4rem;
  }
}
.message__deco {
  position: absolute;
  pointer-events: none;
}
.message__deco img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.message__deco--right-top {
  top: 0;
  right: 0;
  width: 33.4895833333vw;
  height: 5.5208333333vw;
  -webkit-clip-path: polygon(3.08% 0%, 105.88% 0%, 102.8% 100%, 0% 100%);
          clip-path: polygon(3.08% 0%, 105.88% 0%, 102.8% 100%, 0% 100%);
}
@media screen and (max-width: 767px) {
  .message__deco--right-top {
    width: 279px;
    height: 64px;
  }
}
@media screen and (max-width: 767px) {
  .message__deco--right-top img {
    height: auto;
  }
}
.message__deco--right-blob {
  top: 2.7604166667vw;
  right: 4.1145833333vw;
  width: 11.4583333333vw;
  height: 10.4166666667vw;
  -webkit-filter: blur(20px);
          filter: blur(20px);
  opacity: 0.6;
  z-index: -1;
}
.message__deco--right-blob::before {
  -webkit-clip-path: polygon(21.91% 14.34%, 86.58% 14.34%, 78.09% 85.66%, 13.42% 85.66%);
          clip-path: polygon(21.91% 14.34%, 86.58% 14.34%, 78.09% 85.66%, 13.42% 85.66%);
}
@media screen and (max-width: 767px) {
  .message__deco--right-blob {
    width: 81px;
    height: 74px;
    top: 37px;
    right: 0;
  }
}
.message__deco--left {
  top: 5.15625vw;
  left: -1.5vw;
  width: 7.96875vw;
  height: 14.0625vw;
  -webkit-filter: blur(5px);
          filter: blur(5px);
}
.message__deco--left::before {
  -webkit-clip-path: polygon(14.05% 3.46%, 96.82% 3.46%, 91.39% 49.83%, 85.96% 96.54%, 3.18% 96.54%);
          clip-path: polygon(14.05% 3.46%, 96.82% 3.46%, 91.39% 49.83%, 85.96% 96.54%, 3.18% 96.54%);
}
@media screen and (max-width: 767px) {
  .message__deco--left {
    width: 144px;
    height: 132px;
    top: auto;
    left: -72px;
    bottom: -75px;
  }
}
.message__content {
  position: relative;
  z-index: 1;
  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;
  gap: 5.6rem;
  padding-top: 14.9rem;
  text-align: center;
  color: #1c1e20;
}
@media screen and (max-width: 767px) {
  .message__content {
    gap: 2.4rem;
    padding-top: 9rem;
    padding-inline: 20px;
  }
}
.message__heading {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-size: 6.4rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .message__heading {
    font-size: 32px;
    letter-spacing: 0.05em;
  }
}
.message__body {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  font-weight: 300;
  font-size: 2rem;
  line-height: 2.5;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .message__body {
    font-size: 16px;
    letter-spacing: 0.05em;
    text-align: left;
  }
}

.services {
  padding-top: 6.25vw;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .services {
    padding-top: 48px;
  }
}
.services__heading {
  margin-bottom: 2.9166666667vw;
}
@media screen and (max-width: 767px) {
  .services__heading {
    margin-bottom: 32px;
  }
}
.services__panels {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .services__panels {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}
.services__card {
  position: relative;
  width: 61.40625vw;
  height: 47.96875vw;
  overflow: hidden;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .services__card {
    width: 100%;
    height: auto;
    -webkit-clip-path: none;
            clip-path: none;
    overflow: hidden;
  }
}
.services__card.agency {
  z-index: 1;
  -webkit-clip-path: polygon(0 0, 100% 0, calc(100% - 8rem) 100%, 0 100%);
          clip-path: polygon(0 0, 100% 0, calc(100% - 8rem) 100%, 0 100%);
}
@media screen and (max-width: 767px) {
  .services__card.agency {
    -webkit-clip-path: none;
            clip-path: none;
  }
}
.services__card.academy {
  margin-left: -10.4166666667vw;
  margin-top: 10.4166666667vw;
  z-index: 2;
  -webkit-clip-path: polygon(8rem 0, 100% 0, 100% 100%, 0 100%);
          clip-path: polygon(8rem 0, 100% 0, 100% 100%, 0 100%);
}
@media screen and (max-width: 767px) {
  .services__card.academy {
    -webkit-clip-path: none;
            clip-path: none;
    margin-left: 0;
    margin-top: 0;
  }
}
.services__card-bg {
  position: absolute;
  inset: 0;
}
@media screen and (max-width: 767px) {
  .services__card-bg {
    height: 100%;
  }
}
.services__card-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.services__card.agency .services__card-bg::after {
  background-color: #6e95c3;
  mix-blend-mode: multiply;
}
.services__card.academy .services__card-bg::after {
  background-color: #87a792;
  mix-blend-mode: multiply;
}
@media screen and (max-width: 767px) {
  .services__card.academy .services__card-en {
    font-size: 1.6rem;
    line-height: 1.5em;
  }
}
.services__card-inner {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.0833333333vw;
  padding: 6.9270833333vw 11.7708333333vw;
}
@media screen and (max-width: 767px) {
  .services__card-inner {
    margin-inline: auto;
    padding: 56px 20px 64px;
    gap: 32px;
    max-width: 375px;
  }
}
.services__card-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.25vw;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  color: #fffdfd;
}
@media screen and (max-width: 767px) {
  .services__card-header {
    gap: 10px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.services__card-en {
  font-family: "Aboreto", serif;
  font-weight: 400;
  font-size: 0.8333333333vw;
  line-height: 1;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .services__card-en {
    font-size: 12px;
    letter-spacing: 0.1em;
  }
}
.services__card-title {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  font-weight: 700;
  font-size: 2.0833333333vw;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .services__card-title {
    font-size: 32px;
    letter-spacing: 0.05em;
  }
}
.services__card-tagline {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  font-weight: 700;
  font-size: 1.0416666667vw;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .services__card-tagline {
    font-size: 16px;
    letter-spacing: 0.05em;
  }
}
.services__card-features {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 0.625vw;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .services__card-features {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.services__card-feature {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.8333333333vw;
  height: 4.6875vw;
  padding: 0.5208333333vw 0.5208333333vw 0.5208333333vw 1.0416666667vw;
  background-color: #fffdfd;
  border-radius: 5px;
}
@media screen and (max-width: 767px) {
  .services__card-feature {
    height: 80px;
    padding: 4px 10px 4px 20px;
    gap: 16px;
  }
}
.services__card-feature-icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 2.6041666667vw;
  height: 2.6041666667vw;
}
@media screen and (max-width: 767px) {
  .services__card-feature-icon {
    width: 35px;
    height: 35px;
  }
}
.services__card-feature-icon--sm-sq {
  width: 2.0833333333vw;
  height: 2.0833333333vw;
}
@media screen and (max-width: 767px) {
  .services__card-feature-icon--sm-sq {
    width: 28px;
    height: 28px;
  }
}
.services__card-feature-icon--wide-sq {
  width: 2.2916666667vw;
  height: 2.0833333333vw;
}
@media screen and (max-width: 767px) {
  .services__card-feature-icon--wide-sq {
    width: 31px;
    height: 28px;
  }
}
.services__card-feature-icon--sm-tall {
  width: 2.0833333333vw;
  height: 2.34375vw;
}
@media screen and (max-width: 767px) {
  .services__card-feature-icon--sm-tall {
    width: 28px;
    height: 31px;
  }
}
.services__card-feature-icon--wide-short {
  width: 2.6041666667vw;
  height: 1.875vw;
}
@media screen and (max-width: 767px) {
  .services__card-feature-icon--wide-short {
    width: 35px;
    height: 25px;
  }
}
.services__card-feature-icon--ma {
  width: 2.5520833333vw;
  height: 1.6145833333vw;
}
@media screen and (max-width: 767px) {
  .services__card-feature-icon--ma {
    width: 34px;
    height: 22px;
  }
}
.services__card-feature-icon--inhouse {
  width: 3.125vw;
  height: 1.25vw;
}
@media screen and (max-width: 767px) {
  .services__card-feature-icon--inhouse {
    width: 42px;
    height: 17px;
  }
}
.services__card-feature-icon--sm-lg-tall {
  width: 2.0833333333vw;
  height: 3.125vw;
}
@media screen and (max-width: 767px) {
  .services__card-feature-icon--sm-lg-tall {
    width: 28px;
    height: 42px;
  }
}
.services__card-feature-label {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  font-weight: 300;
  font-size: 1.0416666667vw;
  line-height: 1.75;
  letter-spacing: 0.05em;
  word-break: keep-all;
}
@media screen and (max-width: 767px) {
  .services__card-feature-label {
    font-size: 16px;
    letter-spacing: 0.05em;
  }
}
.services__card.agency .services__card-feature-label {
  color: #1752d9;
}
.services__card.academy .services__card-feature-label {
  color: #2cb22c;
}
.services__card-cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.6666666667vw;
  -ms-flex-item-align: center;
      align-self: center;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .services__card-cta {
    gap: 24px;
    -ms-flex-item-align: center;
        align-self: center;
  }
}
.services__card-cta-text {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  font-weight: 700;
  font-size: 1.0416666667vw;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #fffdfd;
  border-bottom: 1px solid #fffdfd;
  padding-bottom: 0.1041666667vw;
}
@media screen and (max-width: 767px) {
  .services__card-cta-text {
    font-size: 16px;
  }
}
.services__card-cta-arrow {
  display: block;
  width: 4.375vw;
  height: 4.375vw;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .services__card-cta-arrow {
    width: 50px;
    height: 50px;
  }
}
.services__tagline {
  margin-top: 6.25vw;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .services__tagline {
    margin-top: 56px;
    padding-inline: 4%;
  }
}
.services__tagline-text {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 0.05em;
  color: #1c1e20;
}
.services__tagline-sm {
  font-size: 2.5vw;
}
@media screen and (max-width: 767px) {
  .services__tagline-sm {
    font-size: 24px;
  }
}
.services__tagline-lg {
  font-size: 3.3333333333vw;
}
@media screen and (max-width: 767px) {
  .services__tagline-lg {
    font-size: 32px;
  }
}

.vision {
  overflow: hidden;
}
.vision__wrapper {
  margin-inline: auto;
  padding-inline: 4%;
  width: 100%;
  max-width: calc(1700px + 8%);
}
.vision__container {
  position: relative;
  min-height: 1080px;
}
@media screen and (max-width: 767px) {
  .vision__container {
    padding-bottom: 500px;
    min-height: 0;
  }
}
.vision__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.vision__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(to bottom, #fff, rgba(255, 255, 255, 0));
}
.vision__inner {
  position: relative;
  z-index: 1;
  max-width: 100rem;
  margin-inline: auto;
  padding-inline: 4%;
  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;
  gap: 5.6rem;
}
.vision__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2em;
  width: 100%;
}
.vision__text {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  font-weight: 300;
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0.05em;
  color: #1c1e20;
  word-break: break-word;
}
@media screen and (max-width: 767px) {
  .vision {
    padding: 0 0 64px;
  }
  .vision__inner {
    padding-inline: 6.7%;
    gap: 32px;
  }
  .vision__text {
    font-size: 14px;
    letter-spacing: 0.05em;
  }
}

.stance {
  padding-block: 12rem;
}
@media screen and (max-width: 767px) {
  .stance {
    padding: 40px 0 64px;
  }
}
.stance__inner {
  width: 100%;
  max-width: calc(1439px + 8%);
  margin-inline: auto;
  padding-inline: 4%;
  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;
  gap: 5.6rem;
}
@media screen and (max-width: 767px) {
  .stance__inner {
    gap: 32px;
  }
}
.stance__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5.3rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 1200px) {
  .stance__cards {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media screen and (max-width: 767px) {
  .stance__cards {
    -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;
    gap: 56px;
    width: 100%;
  }
}

.result {
  position: relative;
  padding: 12.9rem 0;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .result {
    padding: 166px 0 324px;
  }
}
.result__decor {
  position: absolute;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.result__decor--left-top {
  top: 22.5rem;
  left: 14.1rem;
  width: 28.7rem;
  height: 21.2rem;
  z-index: 2;
}
.result__decor--left {
  top: 31rem;
  left: -60rem;
  width: 98.5rem;
  height: 90rem;
  z-index: 1;
  -webkit-filter: blur(20px);
          filter: blur(20px);
}
.result__decor--left::before {
  -webkit-clip-path: polygon(14.49% 4.09%, 96.24% 4.09%, 85.51% 95.91%, 3.76% 95.91%);
          clip-path: polygon(14.49% 4.09%, 96.24% 4.09%, 85.51% 95.91%, 3.76% 95.91%);
}
.result__decor--left-bottom {
  bottom: -2rem;
  left: 8rem;
  width: 39.5rem;
  height: 36rem;
  z-index: 2;
}
.result__decor--right {
  top: 0;
  right: -10rem;
  width: 46.1rem;
  height: 42.1rem;
  -webkit-filter: blur(5px);
          filter: blur(5px);
}
.result__decor--right::before {
  -webkit-clip-path: polygon(13.2% 2.27%, 97.92% 2.27%, 86.79% 97.73%, 2.08% 97.73%);
          clip-path: polygon(13.2% 2.27%, 97.92% 2.27%, 86.79% 97.73%, 2.08% 97.73%);
}
.result__decor--right-bottom {
  top: 31.7rem;
  right: 5rem;
  width: 46.6rem;
  height: 42.5rem;
}
@media screen and (max-width: 767px) {
  .result__decor--left-top {
    top: unset;
    bottom: 200px;
    left: -40px;
    width: 119px;
    height: 88px;
    z-index: 2;
  }
  .result__decor--left {
    top: auto;
    bottom: -80px;
    left: -200px;
    width: 100%;
    max-width: 362px;
    height: 330px;
    z-index: 1;
  }
  .result__decor--left-bottom {
    top: auto;
    bottom: -50px;
    left: 80px;
    right: 24px;
    width: 223px;
    height: 205px;
    z-index: 2;
  }
  .result__decor--right {
    top: 0;
    right: -25px;
    width: 108px;
    height: 98px;
  }
  .result__decor--right-bottom {
    top: 29px;
    right: 73px;
    width: 109px;
    height: 100px;
  }
}
.result__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 96.5rem;
  margin-inline: auto;
  padding-inline: 4%;
  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;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .result__inner {
    max-width: 375px;
    padding-inline: 5%;
  }
}
.result__heading {
  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;
  gap: 3.2rem;
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  color: #1c1e20;
}
@media screen and (max-width: 767px) {
  .result__heading {
    gap: 16px;
  }
}
.result__heading-label {
  font-size: 1.6666666667vw;
  line-height: 1.4;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .result__heading-label {
    font-size: 20px;
  }
}
.result__heading-text {
  font-size: 2.5vw;
  line-height: 1.75;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .result__heading-text {
    font-size: 32px;
  }
}
.result__badge {
  position: relative;
  margin-top: 4.8rem;
  width: 26rem;
  height: 26rem;
}
@media screen and (max-width: 767px) {
  .result__badge {
    margin-top: 40px;
    width: 260px;
    height: 260px;
  }
}
.result__badge-chart {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}
.result__badge-text {
  position: absolute;
  inset: 0;
  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;
  gap: 0;
}
.result__badge-label {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  font-weight: 300;
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0.05em;
  color: #1c1e20;
}
@media screen and (max-width: 767px) {
  .result__badge-label {
    font-size: 14px;
  }
}
.result__badge-percent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  font-family: "Aboreto", serif;
  font-weight: 400;
  color: #02407b;
  line-height: 1;
}
.result__badge-num {
  font-size: 6.4rem;
  letter-spacing: -0.05em;
}
@media screen and (max-width: 767px) {
  .result__badge-num {
    font-size: 64px;
  }
}
.result__badge-sign {
  font-size: 4.8rem;
}
@media screen and (max-width: 767px) {
  .result__badge-sign {
    font-size: 48px;
  }
}
.result__badge-suffix {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  font-weight: 300;
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0.05em;
  color: #1c1e20;
}
@media screen and (max-width: 767px) {
  .result__badge-suffix {
    font-size: 14px;
  }
}
.result__captions {
  margin-top: 4.8rem;
  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;
  gap: 2.4rem;
}
@media screen and (max-width: 767px) {
  .result__captions {
    margin-top: 32px;
    gap: 24px;
  }
}
.result__caption-note {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  font-weight: 300;
  font-size: 1.6rem;
  line-height: 2;
  color: #1c1e20;
}
@media screen and (max-width: 767px) {
  .result__caption-note {
    font-size: 14px;
  }
}
.result__caption-strong {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  font-weight: 700;
  font-size: 1.4583333333vw;
  line-height: 1.75;
  letter-spacing: 0.05em;
  color: #1c1e20;
}
@media screen and (max-width: 767px) {
  .result__caption-strong {
    font-size: 16px;
  }
}

.achievement {
  position: relative;
  padding: 12rem 0;
  background-color: #111435;
  color: #fffdfd;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .achievement {
    padding: 180px 0 68px;
  }
}
.achievement__inner {
  padding: 0 4%;
  margin: 0 auto;
  max-width: calc(1200px + 8%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8rem;
}
@media screen and (max-width: 767px) {
  .achievement__inner {
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .achievement__inner {
    gap: 56px;
    padding-inline: 5%;
  }
}
.achievement__block {
  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;
  gap: 4rem;
}
.achievement__block--academy {
  margin-top: 8rem;
}
@media screen and (max-width: 767px) {
  .achievement__block {
    gap: 24px;
  }
  .achievement__block--academy {
    margin-top: 56px;
  }
}
.achievement__sub-heading {
  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;
  gap: 2.4rem;
  text-align: center;
  color: #fffdfd;
}
@media screen and (max-width: 767px) {
  .achievement__sub-heading {
    gap: 16px;
  }
}
.achievement__sub-en {
  font-family: "Aboreto", serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .achievement__sub-en {
    font-size: 16px;
  }
}
.achievement__sub-jp {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  font-weight: 700;
  font-size: 4rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .achievement__sub-jp {
    font-size: 32px;
  }
}
.achievement__sub-note {
  margin-top: 1.6rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  font-weight: 300;
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .achievement__sub-note {
    margin-top: 8px;
    font-size: 14px;
  }
}
.achievement__summary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 7.7rem;
  width: 100%;
}
@media screen and (max-width: 1400px) {
  .achievement__summary {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .achievement__summary {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
  }
}
.achievement__stats {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3.2rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 42rem;
}
@media screen and (max-width: 767px) {
  .achievement__stats {
    width: 100%;
    gap: 16px;
  }
}
.achievement__stat {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8rem;
  padding: 1.6rem 2.4rem 1.6rem 1.6rem;
  border-radius: 5px;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #fffdfd), to(#d1d2d9));
  background-image: linear-gradient(to bottom, #fffdfd 50%, #d1d2d9);
}
@media screen and (max-width: 767px) {
  .achievement__stat {
    gap: 32px;
    padding: 16px;
  }
}
.achievement__stat-icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 14rem;
  height: 11rem;
  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;
}
.achievement__stat-icon--green {
  border-radius: 5px;
  background-color: #2cb22c;
}
@media screen and (max-width: 767px) {
  .achievement__stat-icon {
    width: 130px;
    height: 110px;
  }
}
.achievement__stat-text {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 13.2rem;
  color: #1c1e20;
}
@media screen and (max-width: 767px) {
  .achievement__stat-text {
    width: 121px;
  }
}
.achievement__stat-label {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  font-weight: 300;
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .achievement__stat-label {
    font-size: 14px;
  }
}
.achievement__stat-num {
  font-family: "Aboreto", serif;
  font-weight: 400;
  font-size: 7.2rem;
  line-height: 1.2;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .achievement__stat-num {
    font-size: 64px;
  }
}
.achievement__chart {
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 70.3rem;
  height: 59.9rem;
}
@media screen and (max-width: 767px) {
  .achievement__chart {
    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;
    width: 100%;
    height: auto;
    gap: 24px;
  }
}
.achievement__chart-donut {
  position: absolute;
  top: 8.2rem;
  left: 12.3rem;
  width: 48rem;
  height: 48rem;
}
@media screen and (max-width: 767px) {
  .achievement__chart-donut {
    position: relative;
    top: auto;
    left: auto;
    width: 335px;
    height: 335px;
  }
}
.achievement__chart-ring {
  position: absolute;
  inset: 0;
}
.achievement__chart-center {
  position: absolute;
  top: 8.3rem;
  left: 8.3rem;
  width: 31.3rem;
  height: 31.3rem;
}
@media screen and (max-width: 767px) {
  .achievement__chart-center {
    top: 58px;
    left: 58px;
    width: 220px;
    height: 220px;
  }
}
.achievement__chart-icon {
  position: absolute;
  top: 16.3rem;
  left: 50%;
  width: 11rem;
  height: 7.3rem;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .achievement__chart-icon {
    top: 109px;
    width: 75px;
    height: 50px;
  }
}
.achievement__chart-caption {
  position: absolute;
  top: 26rem;
  left: 50%;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  font-weight: 300;
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.05em;
  color: #1c1e20;
  text-align: center;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .achievement__chart-caption {
    top: 175px;
    width: 117px;
    font-size: 12px;
  }
}
.achievement__legend {
  position: absolute;
  width: 12.1rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid #fffdfd;
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  color: #fffdfd;
}
.achievement__legend::after {
  content: "";
  position: absolute;
  height: 1px;
  background-color: #fffdfd;
  -webkit-transform-origin: left center;
          transform-origin: left center;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .achievement__legend::after {
    display: none;
  }
}
.achievement__legend--top {
  top: 6.1rem;
  left: 58.2rem;
}
.achievement__legend--top::after {
  bottom: -0.1rem;
  left: -0.1rem;
  width: 6.08rem;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}
.achievement__legend--right {
  top: 50rem;
  left: 47.9rem;
}
.achievement__legend--right::after {
  bottom: 0;
  left: 0;
  width: 9.05rem;
  -webkit-transform: rotate(230deg);
          transform: rotate(230deg);
}
.achievement__legend--bottom {
  top: 31rem;
  left: 0;
}
.achievement__legend--bottom::after {
  bottom: 0;
  right: 0;
  width: 6.08rem;
  -webkit-transform-origin: right center;
          transform-origin: right center;
  -webkit-transform: rotate(145deg);
          transform: rotate(145deg);
}
.achievement__legend--left {
  top: 0;
  left: 8.8rem;
}
.achievement__legend--left::after {
  bottom: 0;
  right: 0;
  width: 6.93rem;
  -webkit-transform-origin: right center;
          transform-origin: right center;
  -webkit-transform: rotate(230deg);
          transform: rotate(230deg);
}
@media screen and (max-width: 767px) {
  .achievement__legend {
    position: static;
    width: auto;
    padding: 0;
    border-bottom: 0;
  }
  .achievement__legend::after {
    display: none;
  }
  .achievement__legend--top, .achievement__legend--right, .achievement__legend--bottom, .achievement__legend--left {
    top: auto;
    left: auto;
  }
}
.achievement__legend-label {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  font-weight: 300;
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .achievement__legend-label {
    font-size: 14px;
  }
}
.achievement__legend-value {
  position: relative;
  padding-left: 2.1rem;
}
.achievement__legend-dot {
  position: absolute;
  left: 0;
  top: 1.7rem;
  width: 0.8rem;
  height: 0.8rem;
}
.achievement__legend-text {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  font-weight: 400;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.achievement__legend-num {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  font-weight: 700;
  font-size: 3.6rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .achievement__legend-num {
    font-size: 28px;
  }
}
.achievement__legend-pct {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  font-weight: 300;
  font-size: 1.6rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .achievement__legend-pct {
    font-size: 14px;
  }
}
.achievement__cases {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4rem;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 1200px) {
  .achievement__cases {
    -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;
  }
}
@media screen and (max-width: 767px) {
  .achievement__cases {
    -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;
    gap: 24px;
  }
}
.achievement__carousel {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
}
.achievement__arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 8.4rem;
  height: 8.4rem;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.achievement__arrow:hover {
  opacity: 0.8;
}
.achievement__arrow:disabled {
  opacity: 0.4;
  cursor: default;
}
.achievement__arrow--prev {
  left: calc(50% - 56rem);
  -webkit-transform: translateY(-50%) scaleX(-1);
          transform: translateY(-50%) scaleX(-1);
}
.achievement__arrow--next {
  right: calc(50% - 56rem);
}
@media screen and (max-width: 767px) {
  .achievement__arrow {
    display: none;
  }
}
.achievement__slide {
  width: 100%;
  max-width: 48rem;
  height: 30rem;
  overflow: hidden;
  opacity: 0.6;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}
.achievement__slide.is-active {
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .achievement__slide {
    width: 300px;
    height: 188px;
  }
}
@media screen and (max-width: 767px) {
  .achievement__legends {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    width: 100%;
    max-width: 260px;
  }
}
.achievement__dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.8rem;
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .achievement__dots {
    margin-top: 16px;
  }
}
.achievement__dot {
  display: block;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 1rem;
  background-color: rgba(255, 253, 253, 0.5);
}
.achievement__dot--active {
  width: 3rem;
  background-color: #fffdfd;
}

.information {
  position: relative;
  padding: 16.3rem 0;
  background-color: #fff;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .information {
    padding: 80px 0;
  }
}
.information__bg {
  position: absolute;
  top: -5rem;
  right: -32rem;
  width: 68rem;
  height: 62.1rem;
  z-index: 0;
  pointer-events: none;
  -webkit-filter: blur(20px);
          filter: blur(20px);
}
.information__bg::before {
  -webkit-clip-path: polygon(23.93% 5.66%, 92.09% 5.66%, 92.09% 94.34%, 7.91% 94.34%);
          clip-path: polygon(23.93% 5.66%, 92.09% 5.66%, 92.09% 94.34%, 7.91% 94.34%);
}
@media screen and (max-width: 767px) {
  .information__bg {
    display: none;
  }
}
.information__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 100rem;
  margin-inline: auto;
  padding-inline: 4%;
  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;
  gap: 5.6rem;
}
@media screen and (max-width: 767px) {
  .information__inner {
    padding-inline: 8.8%;
    gap: 24px;
  }
}
.information__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4.8rem;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .information__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 32px;
  }
}
.information__categories {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.2rem;
  width: 10.8rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .information__categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
    width: 100%;
  }
}
.information__category {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 1rem;
  border-radius: 5px;
  background-color: #f8f8f9;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  font-weight: 300;
  font-size: 1.4rem;
  line-height: 2;
  letter-spacing: 0.05em;
  color: #686d73;
  white-space: nowrap;
  -ms-flex-item-align: start;
      align-self: flex-start;
  cursor: pointer;
}
.information__category--active, .information__category:hover {
  background-color: #b4bec7;
  color: #fffdfd;
}
@media screen and (max-width: 767px) {
  .information__category {
    width: 100%;
    padding: 0 10px;
    font-size: 14px;
  }
}
.information__list {
  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-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
@media screen and (max-width: 767px) {
  .information__list {
    width: 100%;
  }
}
.information__item {
  border-bottom: 1px solid #dee3e8;
}
.information__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.4rem;
  padding: 1.2rem 0;
  width: 100%;
  color: #1c1e20;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .information__link {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 8px 17px;
    padding: 16px 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.information__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.4rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .information__meta {
    gap: 24px;
    width: calc(100% - 35px);
  }
}
.information__date {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  font-weight: 300;
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0.05em;
  color: #1c1e20;
  white-space: nowrap;
}
.information__tag {
  width: 8.8rem;
  text-align: center;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  font-weight: 300;
  font-size: 1.4rem;
  line-height: 2;
  letter-spacing: 0.05em;
  color: #686d73;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .information__tag {
    width: auto;
    font-size: 14px;
    text-align: left;
  }
}
.information__title {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  font-weight: 300;
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0.05em;
  color: #1c1e20;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (max-width: 767px) {
  .information__title {
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
    width: calc(100% - 35px);
    font-size: 14px;
    white-space: normal;
  }
}
.information__arrow {
  width: 1.8rem;
  height: 1.8rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .information__arrow {
    width: 18px;
    height: 18px;
    margin-left: auto;
  }
}
.information__more {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.2rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 2;
  letter-spacing: 0.05em;
  color: #686d73;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .information__more {
    font-size: 14px;
  }
}
.information__more-icon {
  margin-top: 0.3rem;
  width: 1.2rem;
  height: 0.9rem;
}
.information__more-icon img {
  display: block;
}
@media screen and (max-width: 767px) {
  .information__more-icon {
    width: 12px;
    height: 9px;
  }
}

.committed {
  position: relative;
  width: 100%;
  overflow: hidden;
  color: #fffdfd;
}
.committed__bg, .committed__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
.committed__bg img, .committed__overlay img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.committed__overlay {
  opacity: 0.8;
  z-index: 1;
}
.committed__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: calc(81rem + 8%);
  margin-inline: auto;
  padding: 12rem 4% 4.6rem;
  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;
  gap: 2.4rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .committed__inner {
    max-width: 100%;
    padding: 100px 5.3% 40px;
    gap: 40px;
  }
}
.committed__heading {
  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;
  gap: 1.2rem;
  width: 100%;
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .committed__heading {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 24px;
  }
}
.committed__lead {
  font-size: 3.2rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .committed__lead {
    font-size: 24px;
    width: 100%;
  }
}
.committed__title {
  font-size: 4.8rem;
  line-height: 1.75;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .committed__title {
    font-size: 32px;
    width: 100%;
  }
}
.committed__body {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0.05em;
}
.committed__body u {
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
@media screen and (max-width: 767px) {
  .committed__body {
    font-size: 16px;
    width: 100%;
    text-align: center;
  }
}
.committed__cta {
  position: relative;
  z-index: 2;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.9);
}
.committed__cta-inner {
  width: 100%;
  max-width: 100rem;
  margin-inline: auto;
  padding: 3.3rem 4%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .committed__cta-inner {
    padding: 24px 5.3%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.overflow {
  overflow: hidden;
}

.pc {
  display: block;
}
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp {
    display: block;
  }
}

[data-aos=fade-up] {
  -webkit-transform: translate3d(0, 24px, 0);
          transform: translate3d(0, 24px, 0);
}

@media (prefers-reduced-motion: reduce) {
  [data-aos] {
    -webkit-transition: none !important;
    transition: none !important;
    -webkit-transform: none !important;
            transform: none !important;
    opacity: 1 !important;
  }
}