* {
  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;
}

button {
  font-family: inherit;
  color: inherit;
}

html {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 10px;
  color: #333;
  scroll-padding-top: 78px;
}
@media screen and (max-width: 767px) {
  html {
    scroll-padding-top: 68px;
  }
}

main {
  padding-top: 80px;
}
@media screen and (max-width: 767px) {
  main {
    padding-top: 70px;
  }
}

[data-anima] {
  -webkit-transition: opacity 0.8s ease-in-out, -webkit-transform 0.8s ease-in-out;
  transition: opacity 0.8s ease-in-out, -webkit-transform 0.8s ease-in-out;
  transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
  transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out, -webkit-transform 0.8s ease-in-out;
}

[data-anima=slide-up] {
  opacity: 0;
  -webkit-transform: translateY(20%);
          transform: translateY(20%);
}
[data-anima=slide-up].animate {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}

[data-anima=fade-in] {
  opacity: 0;
}
[data-anima=fade-in].animate {
  opacity: 1;
}

[data-anima=scale-up] {
  -webkit-transform: scale(0);
          transform: scale(0);
}
[data-anima=scale-up].animate {
  -webkit-transform: scale(1);
          transform: scale(1);
}

[data-anima=clip-reveal] {
  -webkit-transition: clip-path 0.8s ease-in-out;
  transition: clip-path 0.8s ease-in-out;
  clip-path: inset(0 100% 0 0);
}
@media screen and (max-width: 767px) {
  [data-anima=clip-reveal] {
    clip-path: inset(0 0 100% 0);
  }
}
[data-anima=clip-reveal].animate {
  clip-path: inset(0 0 0 0);
}

@-webkit-keyframes line-move {
  0% {
    height: 0;
    bottom: 100%;
  }
  50% {
    height: 100%;
    bottom: 0;
  }
  100% {
    height: 0;
    bottom: 0;
  }
}

@keyframes line-move {
  0% {
    height: 0;
    bottom: 100%;
  }
  50% {
    height: 100%;
    bottom: 0;
  }
  100% {
    height: 0;
    bottom: 0;
  }
}
.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;
}

.container {
  padding-inline: 2%;
  margin-inline: auto;
  width: 100%;
  max-width: calc(1080px + 4%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .container {
    padding-inline: 6.4%;
    max-width: 100%;
  }
}

.container-sm {
  padding-inline: 2%;
  margin-inline: auto;
  width: 100%;
  max-width: calc(877px + 4%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .container-sm {
    padding-inline: 6.4%;
    max-width: 100%;
  }
}

.container-md {
  padding-inline: 2%;
  margin-inline: auto;
  width: 100%;
  max-width: calc(980px + 4%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .container-md {
    padding-inline: 6.4%;
    max-width: 100%;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  font-weight: 500;
  background-color: #fff;
  -webkit-transition: 0.15s ease;
  transition: 0.15s ease;
  z-index: 999999;
}
.header__inner {
  padding-inline: 40px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-block: 20px;
  -webkit-transition: 0.15s ease;
  transition: 0.15s ease;
}
@media screen and (max-width: 767px) {
  .header__inner {
    padding: 14px 24px 16px;
  }
}
.header__logo {
  display: block;
  width: 90px;
  aspect-ratio: 142/60;
  max-height: 38px;
  height: auto;
  margin-right: 20px;
  position: relative;
  -webkit-transition: 0.15s ease;
  transition: 0.15s ease;
}
@media screen and (max-width: 1320px) {
  .header__logo {
    max-width: 116px;
  }
}
@media screen and (max-width: 767px) {
  .header__logo {
    width: 90px;
    height: 38px;
    opacity: 1;
    visibility: visible;
  }
}
.header__logo-img {
  position: absolute;
  inset: 0;
}
.header__logo-img--white {
  display: none;
}
.header__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
.header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  font-size: 1.5rem;
}
@media screen and (max-width: 1320px) {
  .header__nav {
    gap: 20px;
  }
}
@media screen and (max-width: 1140px) {
  .header__nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: fixed;
    top: 68px;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0);
    backdrop-filter: blur(34px) brightness(111%);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    gap: 48px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  font-size: 1.5rem;
}
@media screen and (max-width: 1320px) {
  .header__nav-list {
    gap: 20px;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 1140px) {
  .header__nav-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    font-size: 16px;
    gap: 28px;
  }
}
.header__nav-link {
  position: relative;
  letter-spacing: -0.03em;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .header__nav-link {
    font-size: 16px;
  }
}
.header__nav-link:hover {
  color: #009be8;
}
.header__nav-link:hover::after {
  top: -8px;
  opacity: 1;
}
.header__nav-link::after {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #f90e12;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  margin: auto;
  opacity: 0;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.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;
  height: 26px;
  padding: 0 22px;
  border-radius: 13px;
  background-color: #fff;
  color: #009be8;
  font-size: 1.3rem;
  letter-spacing: -0.03em;
  white-space: nowrap;
  border: 1px solid #009be8;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.header__cta:hover {
  background-color: #009be8;
  color: #fff;
}
@media screen and (max-width: 1140px) {
  .header__cta {
    border-radius: 100px;
    height: 34px;
    width: 190px;
    font-size: 15px;
    border-color: transparent;
  }
}
.header__daicel {
  position: relative;
  display: block;
  width: 100px;
  aspect-ratio: 100/29;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .header__daicel {
    width: 82px;
  }
}
.header__daicel-img {
  position: absolute;
  inset: 0;
}
.header__toggle {
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 30px;
  height: 30px;
  border: 0;
  background-color: transparent;
  cursor: pointer;
  z-index: 10;
}
@media screen and (max-width: 1140px) {
  .header__toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.header__toggle--open .header__toggle-bar:nth-child(1) {
  -webkit-animation: header-rotate-150 0.4s forwards;
          animation: header-rotate-150 0.4s forwards;
}
.header__toggle--open .header__toggle-bar:nth-child(2) {
  -webkit-transform: scale(0);
          transform: scale(0);
}
.header__toggle--open .header__toggle-bar:nth-child(3) {
  -webkit-animation: header-rotate-30 0.4s forwards;
          animation: header-rotate-30 0.4s forwards;
}
.header__toggle--close .header__toggle-bar:nth-child(1) {
  -webkit-animation: header-reverse-rotate-150 0.4s;
          animation: header-reverse-rotate-150 0.4s;
}
.header__toggle--close .header__toggle-bar:nth-child(2) {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: -webkit-transform 0.2s ease 0.2s;
  transition: -webkit-transform 0.2s ease 0.2s;
  transition: transform 0.2s ease 0.2s;
  transition: transform 0.2s ease 0.2s, -webkit-transform 0.2s ease 0.2s;
}
.header__toggle--close .header__toggle-bar:nth-child(3) {
  -webkit-animation: header-reverse-rotate-30 0.4s;
          animation: header-reverse-rotate-30 0.4s;
}
.header__toggle-icon {
  --line-height: 1px;
  --gap: 6px;
  --displacement: calc(var(--line-height) + var(--gap));
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: var(--gap);
}
.header__toggle-bar {
  display: block;
  width: 30px;
  height: var(--line-height);
  background-color: #009be8;
  -webkit-transform-origin: center;
          transform-origin: center;
}
.header--top.transp, .header--top.active {
  background: transparent;
}
.header--top.transp .header__inner, .header--top.active .header__inner {
  padding-block: 24px;
}
@media screen and (max-width: 767px) {
  .header--top.transp .header__inner, .header--top.active .header__inner {
    padding: 14px 24px 16px;
  }
}
.header--top.transp .header__nav-link, .header--top.active .header__nav-link {
  color: #fff;
}
.header--top.transp .header__nav-link::after, .header--top.active .header__nav-link::after {
  background: #fff;
}
.header--top.transp .header__cta, .header--top.active .header__cta {
  border-color: transparent;
  color: #67bbcb;
}
.header--top.transp .header__cta:hover, .header--top.active .header__cta:hover {
  background: #67bbcb;
  color: #fff;
}
.header--top.transp .header__logo, .header--top.active .header__logo {
  width: 142px;
  max-height: 60px;
}
@media screen and (max-width: 767px) {
  .header--top.transp .header__logo, .header--top.active .header__logo {
    opacity: 0;
    visibility: hidden;
  }
}
.header--top.transp .header__logo-img--blue, .header--top.active .header__logo-img--blue {
  display: none;
}
.header--top.transp .header__logo-img--white, .header--top.active .header__logo-img--white {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header--top.transp .header__daicel-img--blue, .header--top.active .header__daicel-img--blue {
  display: none;
}
.header--top.transp .header__daicel-img--white, .header--top.active .header__daicel-img--white {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header--top.transp .header__toggle-bar, .header--top.active .header__toggle-bar {
  background-color: #fff;
}
@media screen and (max-width: 1140px) {
  .header--open .header__nav {
    opacity: 1;
    visibility: visible;
  }
}

@-webkit-keyframes header-rotate-30 {
  0% {
    -webkit-transform: none;
            transform: none;
  }
  50% {
    -webkit-transform: translateY(calc(-1 * var(--displacement)));
            transform: translateY(calc(-1 * var(--displacement)));
  }
  100% {
    -webkit-transform: translateY(calc(-1 * var(--displacement))) rotate(30deg);
            transform: translateY(calc(-1 * var(--displacement))) rotate(30deg);
  }
}

@keyframes header-rotate-30 {
  0% {
    -webkit-transform: none;
            transform: none;
  }
  50% {
    -webkit-transform: translateY(calc(-1 * var(--displacement)));
            transform: translateY(calc(-1 * var(--displacement)));
  }
  100% {
    -webkit-transform: translateY(calc(-1 * var(--displacement))) rotate(30deg);
            transform: translateY(calc(-1 * var(--displacement))) rotate(30deg);
  }
}
@-webkit-keyframes header-reverse-rotate-30 {
  0% {
    -webkit-transform: translateY(calc(-1 * var(--displacement))) rotate(30deg);
            transform: translateY(calc(-1 * var(--displacement))) rotate(30deg);
  }
  50% {
    -webkit-transform: translateY(calc(-1 * var(--displacement)));
            transform: translateY(calc(-1 * var(--displacement)));
  }
  100% {
    -webkit-transform: none;
            transform: none;
  }
}
@keyframes header-reverse-rotate-30 {
  0% {
    -webkit-transform: translateY(calc(-1 * var(--displacement))) rotate(30deg);
            transform: translateY(calc(-1 * var(--displacement))) rotate(30deg);
  }
  50% {
    -webkit-transform: translateY(calc(-1 * var(--displacement)));
            transform: translateY(calc(-1 * var(--displacement)));
  }
  100% {
    -webkit-transform: none;
            transform: none;
  }
}
@-webkit-keyframes header-rotate-150 {
  0% {
    -webkit-transform: none;
            transform: none;
  }
  50% {
    -webkit-transform: translateY(var(--displacement));
            transform: translateY(var(--displacement));
  }
  100% {
    -webkit-transform: translateY(var(--displacement)) rotate(150deg);
            transform: translateY(var(--displacement)) rotate(150deg);
  }
}
@keyframes header-rotate-150 {
  0% {
    -webkit-transform: none;
            transform: none;
  }
  50% {
    -webkit-transform: translateY(var(--displacement));
            transform: translateY(var(--displacement));
  }
  100% {
    -webkit-transform: translateY(var(--displacement)) rotate(150deg);
            transform: translateY(var(--displacement)) rotate(150deg);
  }
}
@-webkit-keyframes header-reverse-rotate-150 {
  0% {
    -webkit-transform: translateY(var(--displacement)) rotate(150deg);
            transform: translateY(var(--displacement)) rotate(150deg);
  }
  50% {
    -webkit-transform: translateY(var(--displacement));
            transform: translateY(var(--displacement));
  }
  100% {
    -webkit-transform: none;
            transform: none;
  }
}
@keyframes header-reverse-rotate-150 {
  0% {
    -webkit-transform: translateY(var(--displacement)) rotate(150deg);
            transform: translateY(var(--displacement)) rotate(150deg);
  }
  50% {
    -webkit-transform: translateY(var(--displacement));
            transform: translateY(var(--displacement));
  }
  100% {
    -webkit-transform: none;
            transform: none;
  }
}
.footer {
  padding: 78px 0 98px;
  background-color: #f8f8f8;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .footer {
    padding: 75px 0;
  }
}
.footer__logo {
  display: block;
  width: 141px;
  height: 40px;
  margin: 0 auto 20px;
}
@media screen and (max-width: 767px) {
  .footer__logo {
    margin-bottom: 16px;
  }
}
.footer__copyright {
  font-family: "Poppins", sans-serif;
  font-size: 1.2rem;
}
@media screen and (max-width: 767px) {
  .footer__copyright {
    font-size: 10px;
  }
}
.footer__container {
  padding-inline: 2%;
  margin-inline: auto;
  width: 100%;
  max-width: calc(1420px + 4%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .footer__container {
    padding-inline: 6.4%;
    max-width: 100%;
  }
}
.footer__inner {
  position: relative;
}
.footer__back-to-top {
  position: absolute;
  top: -124px;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 51px;
  height: 51px;
  border: 0;
  border-radius: 50%;
  background-color: #f8f8f8;
  color: #009be8;
  cursor: pointer;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .footer__back-to-top {
    top: -114px;
    width: 42px;
    height: 42px;
  }
}
.footer__back-to-top:hover {
  background-color: #009be8;
  color: #fff;
}
.footer__back-to-top-icon {
  width: 12px;
  height: 12px;
}
@media screen and (max-width: 767px) {
  .footer__back-to-top-icon {
    width: 10px;
    height: 10px;
  }
}

.text {
  font-size: 1.8rem;
  line-height: 1.7777777778em;
}
@media screen and (max-width: 767px) {
  .text {
    font-size: 16px;
    line-height: 1.625em;
  }
}

.ml {
  margin-left: -0.5em;
}

@media screen and (max-width: 767px) {
  .ml-sp {
    margin-left: -0.5em;
  }
}

.heading {
  text-align: center;
}
.heading__en {
  display: block;
  font: italic 500 6.2rem/1 "Poppins", sans-serif;
}
@media screen and (max-width: 767px) {
  .heading__en {
    font-size: 60px;
  }
}
.heading__en--small {
  font-size: 4rem;
}
.heading__ja {
  font-weight: 600;
  font-size: 1.8rem;
  line-height: 1.5555555556em;
  letter-spacing: -0.03em;
}
.heading--white {
  color: #fff;
}

.meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
.meta__date {
  font-family: "Poppins", sans-serif;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .meta__date {
    font-size: 12px;
  }
}
.meta__tag {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 19px;
  padding: 0 12px;
  border: 1px solid #e5e5e5;
  border-radius: 9.5px;
  color: #525252;
  font-size: 1.2rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .meta__tag {
    font-size: 10px;
    height: 17px;
  }
}

.entry-list {
  border-top: 1px solid #e5e5e5;
}
.entry-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #e5e5e5;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.entry-list__item::after {
  content: "";
  margin-left: auto;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 24.8px;
  height: 6.6px;
  background: url("../public/img/icons/arrow-long-blue.svg") no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .entry-list__item::after {
    width: 26px;
    height: 9px;
  }
}
.entry-list__item:hover {
  opacity: 0.7;
}
.entry-list__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: 12px;
  width: 90%;
}
@media screen and (max-width: 767px) {
  .entry-list__body {
    gap: 15px;
  }
}
.entry-list__title {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 1.5rem;
  line-height: 1.4666666667em;
}
@media screen and (max-width: 767px) {
  .entry-list__title {
    font-size: 14px;
    -webkit-line-clamp: 4;
    line-height: 1.4285714286em;
  }
}

.filter-option {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  cursor: pointer;
}
.filter-option input {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 12px;
  height: 12px;
  border: 1px solid #acacac;
  border-radius: 50%;
  background-color: #fff;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.filter-option input:checked {
  border-color: #009be8;
  background-color: #009be8;
}
.filter-option input:checked ~ .filter-option__text {
  color: #009be8;
}
.filter-option__text {
  font-size: 1.4rem;
  font-weight: 500;
}

.filter-group + .filter-group {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .filter-group + .filter-group {
    margin-top: 52px;
  }
}
.filter-group__label {
  font-size: 1.4rem;
  font-weight: 500;
}
.filter-group__options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .filter-group__options {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

.top {
  padding-top: 0;
}
.top__side {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  padding-bottom: 60px;
}
.top__side-title {
  padding-top: 118px;
  position: sticky;
  font-family: "Poppins", sans-serif;
  font-size: 8rem;
  font-weight: 500;
  font-style: italic;
  color: #fff;
  text-transform: uppercase;
  top: 0;
  left: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: mixed;
  line-height: 0.75em;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .top__side-title {
    font-size: 48px;
  }
}

.top-news-ticker {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: #67bbcb;
  color: #fff;
  z-index: 1;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}
@media screen and (max-width: 767px) {
  .top-news-ticker {
    background-color: #75c1c8;
  }
}
.top-news-ticker__inner {
  padding-inline: 2%;
  margin-inline: auto;
  width: 100%;
  max-width: calc(1400px + 4%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .top-news-ticker__inner {
    padding-inline: 6.4%;
    max-width: 100%;
  }
}
.top-news-ticker__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 24px;
  height: 70px;
}
@media screen and (max-width: 767px) {
  .top-news-ticker__inner {
    height: auto;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 14px;
    padding-block: 17px 21px;
  }
}
.top-news-ticker__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  margin-left: 7.5%;
}
@media screen and (max-width: 767px) {
  .top-news-ticker__item {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 8px 12px;
    margin-left: 0;
  }
}
.top-news-ticker__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 7px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.top-news-ticker__date {
  font-family: "Poppins", sans-serif;
  color: #fff;
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .top-news-ticker__date {
    font-size: 12px;
  }
}
.top-news-ticker__tag {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 19px;
  padding: 0 15px;
  border: 1px solid #fff;
  border-radius: 9.5px;
  color: #fff;
  font-size: 1.2rem;
}
@media screen and (max-width: 767px) {
  .top-news-ticker__tag {
    padding: 0 12px;
    font-size: 10px;
  }
}
.top-news-ticker__title {
  margin-right: auto;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 1.5rem;
  letter-spacing: -0.03em;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .top-news-ticker__title {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    grid-column: 1/3;
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    font-size: 14px;
    line-height: 1.4285714286em;
  }
}
.top-news-ticker__title:hover {
  opacity: 0.7;
}
.top-news-ticker__more {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  font-family: "Poppins", sans-serif;
  font-style: italic;
  font-weight: 500;
  font-size: 1.4rem;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .top-news-ticker__more {
    font-size: 11px;
  }
}
.top-news-ticker__more::after {
  content: "";
  width: 12px;
  height: 10px;
  background: url("../public/img/icons/arrow-white.svg") no-repeat center/100% 100%;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.top-news-ticker__more:hover {
  opacity: 0.7;
}
.top-news-ticker__more:hover::after {
  -webkit-transform: translateX(8px);
          transform: translateX(8px);
}

.top-mv {
  position: relative;
  z-index: 0;
  background: #a4cfd6;
}
.top-mv__front {
  padding-top: 14vh;
  position: relative;
  height: 100vh;
}
@media screen and (max-width: 1600px) {
  .top-mv__front {
    padding-top: 16.9vh;
  }
}
@media screen and (max-width: 767px) {
  .top-mv__front {
    padding-top: 17.7svh;
  }
}
@media screen and (max-width: 767px) and (min-height: 720px) {
  .top-mv__front {
    padding-top: calc(50svh - 38.5px - 190px);
  }
}
.top-mv__people {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  height: 100vh;
  z-index: -3;
  background: #a4cfd6;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .top-mv__people {
    max-height: 700px;
    max-width: 575px;
    margin: auto;
    inset: 0;
  }
}
@media screen and (max-width: 767px) and (min-height: 700px) {
  .top-mv__people {
    -webkit-mask-image: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(12%, black), color-stop(88%, black), to(transparent));
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 12%, black 88%, transparent 100%);
            mask-image: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(12%, black), color-stop(88%, black), to(transparent));
            mask-image: linear-gradient(to bottom, transparent 0%, black 12%, black 88%, transparent 100%);
  }
}
@media screen and (max-width: 767px) and (min-width: 525px) {
  .top-mv__people {
    -webkit-mask-image: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(12%, black), color-stop(88%, black), to(transparent));
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
            mask-image: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(12%, black), color-stop(88%, black), to(transparent));
            mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
  }
}
@media screen and (max-width: 767px) and (min-width: 525px) and (min-height: 700px) {
  .top-mv__people {
    -webkit-mask-image: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(12%, black), color-stop(88%, black), to(transparent)), -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(12%, black), color-stop(88%, black), to(transparent));
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%), linear-gradient(to bottom, transparent 0%, black 12%, black 88%, transparent 100%);
            mask-image: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(12%, black), color-stop(88%, black), to(transparent)), -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(12%, black), color-stop(88%, black), to(transparent));
            mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%), linear-gradient(to bottom, transparent 0%, black 12%, black 88%, transparent 100%);
    -webkit-mask-composite: source-in, xor;
            mask-composite: intersect;
  }
}
.top-mv__front-tgl {
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: auto;
  gap: 1vh;
  height: 12.56vh;
  aspect-ratio: 427/108;
}
@media screen and (min-height: 700px) {
  .top-mv__front-tgl {
    gap: 19.5px;
  }
}
@media screen and (max-width: 767px) {
  .top-mv__front-tgl {
    gap: 10px;
    height: 11svh;
    max-height: 77px;
  }
}
.top-mv__front-tgl-line-1, .top-mv__front-tgl-line-2 {
  overflow: hidden;
}
.top-mv__front-tgl-line-1 .image, .top-mv__front-tgl-line-2 .image {
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transform: translateY(108%);
          transform: translateY(108%);
}
.top-mv__front-tgl-line-1 {
  margin-inline: auto;
  width: 64.87%;
  aspect-ratio: 277/50;
}
.top-mv__front-tgl-line-2 {
  width: 99%;
  aspect-ratio: 427/50;
}
.top-mv__bottom {
  color: #fff;
  background: url("../public/img/top/mv/bottom-bg.jpg") no-repeat bottom/cover;
  position: relative;
  z-index: -2;
}
@media screen and (max-width: 767px) {
  .top-mv__bottom {
    padding-top: 110px;
    background-image: url("../public/img/top/mv/bottom-bg-sp.jpg");
    background-size: 100%;
  }
}
.top-mv__bottom::after {
  content: "";
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1500/410;
}
@media screen and (max-width: 1440px) {
  .top-mv__bottom::after {
    height: 370px;
    aspect-ratio: unset;
  }
}
@media screen and (max-width: 767px) {
  .top-mv__bottom::after {
    height: auto;
    aspect-ratio: 375/260;
  }
}
.top-mv__bottom-anchor {
  top: calc(100vh - 40px);
  position: absolute;
}
@media screen and (max-width: 767px) {
  .top-mv__bottom-anchor {
    top: 100dvh;
  }
}
.top-mv__bottom-content {
  margin: auto;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
@media screen and (max-width: 767px) {
  .top-mv__bottom-content {
    margin-inline: 12px;
    width: 100%;
  }
}
.top-mv__bottom-tgl {
  font-size: 3.4rem;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.3529411765em;
}
@media screen and (max-width: 767px) {
  .top-mv__bottom-tgl {
    font-size: 30px;
  }
}
.top-mv__bottom-par {
  margin-top: 30px;
  font-size: 2rem;
  line-height: 1.8em;
}
@media screen and (max-width: 767px) {
  .top-mv__bottom-par {
    margin-top: 36px;
    font-size: 15px;
    line-height: 1.7333333333em;
  }
}
.top-mv__scroll {
  padding-top: 7vh;
  position: fixed;
  margin: auto;
  top: 0;
  bottom: 0;
  right: 20px;
  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: 5px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .top-mv__scroll {
    padding-top: 0;
    right: 20px;
    gap: 3.5px;
    top: auto;
    bottom: 140px;
  }
}
.top-mv__scroll-line {
  position: relative;
  width: 1px;
  height: 46px;
}
@media screen and (max-width: 767px) {
  .top-mv__scroll-line {
    height: 36px;
  }
}
.top-mv__scroll-line::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 0;
  background: #fff;
  -webkit-animation: line-move 1.5s ease-in-out 0.8s infinite;
          animation: line-move 1.5s ease-in-out 0.8s infinite;
}
.top-mv__scroll-text {
  width: 10px;
  aspect-ratio: 10/50;
}
@media screen and (max-width: 767px) {
  .top-mv__scroll-text {
    width: 7px;
  }
}

.top-data {
  margin-top: 50vh;
  padding-block: 82px 88px;
  position: relative;
  background: #fff;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .top-data {
    padding-block: 70px 0;
  }
}
.top-data__bg {
  position: absolute;
  z-index: -1;
  top: 88px;
  left: 0;
  width: 100%;
  pointer-events: none;
}
.top-data__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .top-data__list {
    grid-template-columns: 1fr;
    gap: 48px;
    margin-top: 48px;
  }
}
.top-data__stat {
  text-align: center;
}
.top-data__stat-label {
  font-size: 2.6rem;
  font-weight: 500;
  line-height: 1.0769230769em;
  min-height: 56px;
  -ms-flex-line-pack: center;
      align-content: center;
}
@media screen and (max-width: 767px) {
  .top-data__stat-label {
    font-size: 18px;
    line-height: 1.2222222222em;
    min-height: unset;
  }
}
.top-data__stat-image {
  display: block;
  width: 100%;
  height: auto;
  margin-top: 22px;
  margin-inline: auto;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .top-data__stat-image {
    margin-top: 18px;
    margin-bottom: 25px;
  }
}
.top-data__list > *:nth-child(1) .top-data__stat-image {
  max-width: 186px;
  aspect-ratio: 186/113;
}
@media screen and (max-width: 767px) {
  .top-data__list > *:nth-child(1) .top-data__stat-image {
    max-width: 176px;
  }
}
.top-data__list > *:nth-child(2) .top-data__stat-image {
  max-width: 155px;
  aspect-ratio: 155/263;
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .top-data__list > *:nth-child(2) .top-data__stat-image {
    max-width: 150px;
  }
}
.top-data__list > *:nth-child(3) .top-data__stat-image {
  max-width: 240px;
  aspect-ratio: 240/116;
}
@media screen and (max-width: 767px) {
  .top-data__list > *:nth-child(3) .top-data__stat-image {
    max-width: 234px;
  }
}
.top-data__stat-description {
  font-weight: 600;
  font-size: 2.6rem;
  line-height: 1.2307692308em;
}
.top-data__stat-citation {
  margin-top: 6px;
  font-size: 1.2rem;
  line-height: 1.3333333333em;
}
.top-data__issues {
  margin-top: 38px;
}
@media screen and (max-width: 767px) {
  .top-data__issues {
    margin-top: 0;
    padding-top: 90px;
    position: relative;
    padding-inline: 13%;
  }
}
.top-data__issues-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 41.5px;
  margin-top: 40px;
  max-width: 602px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .top-data__issues-list {
    grid-template-columns: 1fr;
    gap: 50px;
    margin-top: 34px;
  }
}
.top-data__issue-photo {
  aspect-ratio: 280/180;
}
.top-data__issue-label {
  margin-top: 12px;
  font-size: 1.8rem;
  display: block;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .top-data__issue-label {
    margin-top: 15px;
  }
}
.top-data__issue-heading {
  margin-top: 6px;
  font-size: 2.6rem;
  font-weight: 600;
  line-height: 1.1538461538em;
}
@media screen and (max-width: 767px) {
  .top-data__issue-heading {
    margin-top: 3.5px;
    line-height: 1.2307692308em;
  }
}
.top-data__issues-bg {
  position: absolute;
  z-index: 0;
  top: -16px;
  left: 0;
  width: 100%;
  pointer-events: none;
}
.top-data__issues-bg-img {
  width: 850px;
  left: 50%;
  -webkit-transform: translateX(-53%);
          transform: translateX(-53%);
  position: relative;
}

.top-prod {
  padding-block: 226px 180px;
  position: relative;
  background: url("../public/img/top/prod/bg.jpg") no-repeat top/cover;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .top-prod {
    padding-block: 280px 104px;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(4.7%, #fff), color-stop(6.36%, #e7f5f8), color-stop(9.68%, #bee3ec), color-stop(31.5%, #9bdceb));
    background: linear-gradient(to bottom, #fff 4.7%, #e7f5f8 6.36%, #bee3ec 9.68%, #9bdceb 31.5%);
  }
}
.top-prod__anchor {
  position: relative;
  top: -100px;
}
@media screen and (max-width: 767px) {
  .top-prod__anchor {
    top: -60px;
  }
}
@media screen and (max-width: 767px) {
  .top-prod__deco-sp {
    position: absolute;
    top: 390px;
    left: 0;
    overflow: hidden;
    width: 100%;
    z-index: -2;
  }
}
@media screen and (max-width: 767px) {
  .top-prod__deco-sp-img {
    position: relative;
    width: 100%;
    min-width: 552px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.top-prod__title {
  padding-top: 183px;
}
@media screen and (max-width: 767px) {
  .top-prod__title {
    padding-top: 240px;
  }
}
.top-prod__container {
  padding-inline: 2%;
  margin-inline: auto;
  width: 100%;
  max-width: calc(1100px + 4%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .top-prod__container {
    padding-inline: 6.4%;
    max-width: 100%;
  }
}
.top-prod__main-container {
  padding-inline: 2%;
  margin-inline: auto;
  width: 100%;
  max-width: calc(1140px + 4%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .top-prod__main-container {
    padding-inline: 6.4%;
    max-width: 100%;
  }
}
.top-prod__main {
  position: relative;
}
@media screen and (max-width: 767px) {
  .top-prod__main {
    margin-inline: auto;
    max-width: 285px;
  }
}
.top-prod__main-center {
  margin: auto;
  position: relative;
  width: 28%;
  max-width: 300px;
}
@media screen and (max-width: 767px) {
  .top-prod__main-center {
    width: 196.5px;
  }
}
.top-prod__main-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  aspect-ratio: 300/476;
}
.top-prod__main-back-img {
  position: absolute;
  top: -6%;
  left: 50%;
  width: 114.2%;
  aspect-ratio: 342.6/247.7;
  z-index: -1;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.top-prod__main-ellipse {
  width: 118.6%;
  aspect-ratio: 356/129;
  bottom: 12.5%;
  position: absolute;
  left: 51.6%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.top-prod__main-ripple {
  position: absolute;
  width: 25%;
  max-width: 75px;
  aspect-ratio: 1;
  bottom: 14%;
  right: 12%;
}
@media screen and (max-width: 767px) {
  .top-prod__main-ripple {
    bottom: 45px;
    right: auto;
    left: 24px;
  }
}
.top-prod__main-pointer {
  position: absolute;
  width: 159%;
  max-width: 477px;
  aspect-ratio: 477/134;
  bottom: 20.5%;
  left: 73.5%;
}
@media screen and (max-width: 767px) {
  .top-prod__main-pointer {
    width: 97px;
    height: 246px;
    left: 0;
    bottom: 11px;
  }
}
.top-prod__main-desc {
  position: absolute;
  top: 6%;
  right: 1.4%;
  font-size: min(2.1vw, 26px);
  font-weight: 600;
  line-height: 1.4615384615em;
  letter-spacing: -0.03em;
}
@media screen and (max-width: 1100px) {
  .top-prod__main-desc {
    top: 5vw;
  }
}
@media screen and (max-width: 767px) {
  .top-prod__main-desc {
    margin-top: 25px;
    padding-left: 20px;
    position: relative;
    right: auto;
    top: -5px;
    font-size: 20px;
    line-height: 1.6em;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.top-prod__feature {
  margin-top: 88px;
}
@media screen and (max-width: 767px) {
  .top-prod__feature {
    margin-top: 54px;
  }
}
.top-prod__feature-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}
@media screen and (max-width: 767px) {
  .top-prod__feature-list {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.top-prod__feature-item-badge {
  text-align: center;
  margin-bottom: -34px;
  z-index: 1;
  position: relative;
}
@media screen and (max-width: 767px) {
  .top-prod__feature-item-badge {
    margin-bottom: -28px;
  }
}
.top-prod__feature-item-badge-label {
  padding-left: 0.5em;
  display: inline-block;
  font-style: italic;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .top-prod__feature-item-badge-label {
    font-size: 15px;
  }
}
.top-prod__feature-item-badge-number {
  display: block;
  font-style: italic;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  font-size: 5.4rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .top-prod__feature-item-badge-number {
    font-size: 42px;
  }
}
.top-prod__feature-item-photo {
  margin-top: 8px;
  aspect-ratio: 332/230;
}
.top-prod__feature-item-heading {
  margin-top: 20px;
  font-weight: 600;
  font-size: 2.2rem;
}
@media screen and (max-width: 767px) {
  .top-prod__feature-item-heading {
    margin-top: 15px;
  }
}
.top-prod__feature-item-text {
  margin-top: 12px;
  font-size: 1.8rem;
  line-height: 1.5555555556em;
}
@media screen and (max-width: 767px) {
  .top-prod__feature-item-text {
    margin-top: 8.5px;
    font-size: 16px;
    line-height: 1.5em;
  }
}
.top-prod__use {
  margin-top: 77px;
}
@media screen and (max-width: 767px) {
  .top-prod__use {
    margin-top: 82px;
    padding-inline: 0;
  }
}
.top-prod__usecase-slider {
  margin-top: 19px;
}
@media screen and (max-width: 767px) {
  .top-prod__usecase-slider {
    margin-top: 24px;
  }
}
.top-prod__usecase-slider .splide__track {
  overflow: visible;
}
@media screen and (max-width: 767px) {
  .top-prod__usecase-slider .splide__track {
    overflow: hidden;
  }
}
.top-prod__usecase-slider .splide__arrow {
  background-color: #009be8;
}
.top-prod__usecase-slider .splide__arrow svg {
  fill: #fff;
}
.top-prod__usecase-slider .splide__pagination {
  padding: 0;
  position: static;
  margin-top: 48px;
  gap: 14.5px;
}
.top-prod__usecase-slider .splide__pagination__page {
  margin: 0;
  opacity: 0.8;
  background: #fff;
  width: 11px;
  height: 11px;
}
.top-prod__usecase-slider .splide__pagination__page.is-active {
  background-color: #009be8;
  -webkit-transform: scale(1);
          transform: scale(1);
}
.top-prod__usecase-slider .splide__list {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  gap: 30px;
}
@media screen and (min-width: 768px) {
  .top-prod__usecase-slider .splide__list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 1200px) {
  .top-prod__usecase-slider .splide__list {
    gap: 20px 36px;
  }
}
@media screen and (max-width: 767px) {
  .top-prod__usecase-slider .splide__list {
    gap: 0;
  }
}
.top-prod__usecase-slider .splide__slide {
  width: 14%;
}
@media screen and (min-width: 768px) {
  .top-prod__usecase-slider .splide__slide {
    -ms-flex-negative: unset;
        flex-shrink: unset;
  }
}
.top-prod__usecase-item-photo {
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
}
.top-prod__usecase-item-info {
  margin-top: 16px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  white-space: nowrap;
  left: 50%;
  position: relative;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 1200px) {
  .top-prod__usecase-item-info {
    white-space: normal;
  }
}
@media screen and (max-width: 767px) {
  .top-prod__usecase-item-info {
    margin-top: 12px;
  }
}
.top-prod__usecase-item-text {
  text-align: center;
  font-weight: 600;
  font-size: 1.8rem;
  line-height: 1.3333333333em;
  letter-spacing: -0.03em;
}
@media screen and (max-width: 767px) {
  .top-prod__usecase-item-text {
    font-size: 14px;
    line-height: 1.4285714286em;
  }
}

.top-tech {
  padding-block: 125px 108px;
  background: -webkit-gradient(linear, left top, left bottom, from(#b5effc), color-stop(5.13%, #9bdceb));
  background: linear-gradient(to bottom, #b5effc 0%, #9bdceb 5.13%);
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .top-tech {
    padding-block: 144px 80px;
  }
}
.top-tech__item:not(:first-child) {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .top-tech__item:not(:first-child) {
    margin-top: 68px;
  }
}
.top-tech__item-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .top-tech__item-head {
    gap: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.top-tech__item-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.top-tech__item-label-en {
  font-style: italic;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  font-size: 1.5rem;
  position: relative;
  left: 0.3em;
}
@media screen and (max-width: 767px) {
  .top-tech__item-label-en {
    font-size: 16px;
  }
}
.top-tech__item-label-number {
  font-style: italic;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  font-size: 6.2rem;
  line-height: 1;
  text-align: center;
}
.top-tech__item-description {
  position: relative;
  padding-left: 30px;
  font-weight: 600;
  font-size: 2.2rem;
  line-height: 1.6363636364em;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
@media screen and (max-width: 767px) {
  .top-tech__item-description {
    padding-left: 0;
    padding-top: 38px;
    font-size: 16px;
    max-width: 238px;
    line-height: 1.75em;
  }
}
.top-tech__item-description::before {
  content: "";
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 0;
  width: 1px;
  height: 90%;
  background-color: #333;
}
@media screen and (max-width: 767px) {
  .top-tech__item-description::before {
    height: 1px;
    width: 70px;
    right: 0;
    bottom: auto;
  }
}
.top-tech__item-content {
  margin-top: 28px;
  border-radius: 10px;
  background: #fff;
  padding: 40px 44px;
}
@media screen and (max-width: 767px) {
  .top-tech__item-content {
    padding: 32px 28px 50px;
  }
}
@media screen and (max-width: 767px) {
  .top-tech__item-content--matrix {
    padding-block: 30px 38px;
  }
}
.top-tech__item-image {
  display: block;
  width: 100%;
  height: auto;
}
.top-tech__item-image--02 {
  aspect-ratio: 892/142;
}
@media screen and (max-width: 767px) {
  .top-tech__item-image--02 {
    aspect-ratio: 272/378;
  }
}
.top-tech__flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5%;
  list-style: none;
  counter-reset: flow-item;
}
@media screen and (max-width: 767px) {
  .top-tech__flow {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}
.top-tech__flow-item {
  counter-increment: flow-item;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.top-tech__flow-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .top-tech__flow-head {
    gap: 6px;
  }
}
.top-tech__flow-head::before {
  content: counter(flow-item) ".";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #009be8;
  font-style: italic;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  font-size: 3rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .top-tech__flow-body {
    padding-top: 6px;
  }
}
.top-tech__flow-heading {
  font-weight: 600;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .top-tech__flow-heading {
    font-size: 1.8rem;
  }
}
.top-tech__flow-heading .kakko {
  width: 0.6em;
  display: inline-block;
}
.top-tech__flow-desc {
  margin-block: 14px 36px;
  font-size: 1.6rem;
  line-height: 1.5em;
}
@media screen and (max-width: 767px) {
  .top-tech__flow-desc {
    margin-block: 10px 24px;
    width: 95%;
  }
}
.top-tech__flow-img {
  display: block;
  margin: auto;
  width: 94%;
  height: auto;
  max-width: 244px;
  aspect-ratio: 244/134;
}
@media screen and (max-width: 767px) {
  .top-tech__flow-img {
    width: 85%;
    max-width: 280px;
  }
}
.top-tech__flow-img--01 {
  aspect-ratio: 244/105;
}
.top-tech__diagram {
  margin-top: 22px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media screen and (max-width: 767px) {
  .top-tech__diagram {
    margin-top: 11px;
    grid-template-columns: 1fr;
    gap: 60px;
    padding-bottom: 120px;
  }
}
.top-tech__diagram-before {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .top-tech__diagram-before {
    width: 96%;
  }
}
.top-tech__diagram-before::after {
  content: "";
  margin: auto;
  position: absolute;
  top: 38%;
  right: 4.9%;
  width: 58px;
  height: 42px;
  background: url("../public/img/top/tech/diagram-arrow.svg") no-repeat center/100% 100%;
}
@media screen and (max-width: 767px) {
  .top-tech__diagram-before::after {
    height: 34px;
    width: 16.7px;
    top: auto;
    left: 0;
    right: 0;
    bottom: -48px;
    background-image: url("../public/img/top/tech/diagram-arrow-sp.svg");
  }
}
.top-tech__diagram-before-img {
  margin: auto;
  width: 65.3%;
  max-width: 320px;
  aspect-ratio: 320/514;
  height: auto;
}
.top-tech__diagram-abs {
  position: absolute;
}
.top-tech__before-ripple {
  width: 11.63%;
  top: 42%;
  left: 37%;
}
.top-tech__before-desc {
  width: 25.47%;
  top: 61.5%;
  left: 13%;
}
.top-tech__before-pointer {
  width: 30.59%;
  top: 47%;
  left: 13%;
}
.top-tech__diagram-after {
  position: relative;
}
@media screen and (max-width: 767px) {
  .top-tech__diagram-after {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.top-tech__after-ripple {
  width: 16.33%;
  top: 47%;
  left: 53%;
}
@media screen and (max-width: 767px) {
  .top-tech__after-ripple {
    top: 72%;
    left: 66%;
  }
}
.top-tech__after-desc {
  width: 43.06%;
  top: 71%;
  left: 34%;
}
@media screen and (max-width: 767px) {
  .top-tech__after-desc {
    top: 114%;
    left: 47%;
  }
}
.top-tech__after-pointer {
  width: 28.78%;
  top: 54%;
  left: 34%;
}
@media screen and (max-width: 767px) {
  .top-tech__after-pointer {
    top: 84%;
    left: 47%;
  }
}
.top-tech__diagram-after-img {
  margin-top: 32px;
  width: 80.4%;
  max-width: 394px;
  aspect-ratio: 394/286;
  height: auto;
}
@media screen and (max-width: 767px) {
  .top-tech__diagram-after-img {
    margin: auto;
    width: 88%;
  }
}
.top-tech__matrix-scroll {
  overflow-x: auto;
}
.top-tech__matrix {
  width: 100%;
  min-width: 780px;
  border-collapse: collapse;
  table-layout: fixed;
}
@media screen and (max-width: 767px) {
  .top-tech__matrix {
    display: none;
  }
}
.top-tech__matrix th,
.top-tech__matrix td {
  font-weight: 400;
  font-size: 1.6rem;
  letter-spacing: -0.03em;
  text-align: left;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .top-tech__matrix th,
  .top-tech__matrix td {
    padding-right: 4px;
    letter-spacing: 0;
  }
}
.top-tech__matrix th::after,
.top-tech__matrix td::after {
  width: 100%;
}
.top-tech__matrix th:not(:last-child)::after,
.top-tech__matrix td:not(:last-child)::after {
  width: calc(100% - 10px);
}
@media screen and (max-width: 767px) {
  .top-tech__matrix th:not(:last-child)::after,
  .top-tech__matrix td:not(:last-child)::after {
    width: calc(100% - 4px);
  }
}
.top-tech__matrix thead th {
  padding-bottom: 12px;
  font-weight: 600;
  font-size: 2rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .top-tech__matrix thead th {
    text-align: center;
    font-size: 14px;
  }
}
.top-tech__matrix thead th::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  border-bottom: 1px solid #7acbf3;
}
@media screen and (max-width: 767px) {
  .top-tech__matrix thead th:first-child {
    display: none;
  }
}
.top-tech__matrix thead th:first-child::after {
  width: 100%;
}
.top-tech__matrix tbody th,
.top-tech__matrix tbody td {
  padding-block: 26px;
  position: relative;
  line-height: 1.4375em;
}
@media screen and (max-width: 767px) {
  .top-tech__matrix tbody th,
  .top-tech__matrix tbody td {
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    text-orientation: upright;
    font-size: 12px;
    padding: 12px 0;
  }
}
.top-tech__matrix tbody th::after,
.top-tech__matrix tbody td::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  border-bottom: 1.8px dotted #7acbf3;
}
.top-tech__matrix th:nth-child(1),
.top-tech__matrix td:nth-child(1) {
  width: 13%;
}
.top-tech__matrix th:nth-child(2),
.top-tech__matrix td:nth-child(2) {
  width: 12%;
}
@media screen and (max-width: 767px) {
  .top-tech__matrix th:nth-child(2),
  .top-tech__matrix td:nth-child(2) {
    width: 18.5%;
  }
}
@media screen and (max-width: 767px) {
  .top-tech__matrix tbody th:first-child {
    text-align: center;
    font-size: 14px;
    font-weight: 700;
  }
}
@media screen and (max-width: 767px) {
  .top-tech__matrix tbody tr:first-child th:first-child {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .top-tech__matrix tbody tr:first-child th:nth-child(2) {
    text-align: center;
    font-weight: 700;
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .top-tech__matrix-sp-img {
    margin: auto;
    width: 100%;
    max-width: 400px;
    aspect-ratio: 275/615;
  }
}

.top-story {
  background-color: #ebe4d8;
  padding-bottom: 112px;
}
@media screen and (max-width: 767px) {
  .top-story {
    padding-bottom: 168px;
  }
}
.top-story__banner {
  position: relative;
  aspect-ratio: 1500/700;
  overflow: hidden;
  max-height: calc(100vh - 78px);
  width: 100%;
}
@media screen and (max-width: 767px) {
  .top-story__banner {
    aspect-ratio: 375/347;
    max-height: unset;
  }
}
.top-story__banner .image {
  position: absolute;
  inset: 0;
}
@media screen and (max-width: 767px) {
  .top-story__banner .image {
    -o-object-position: 31% 50%;
       object-position: 31% 50%;
  }
}
.top-story__heading {
  position: absolute;
  bottom: 64px;
  left: 50%;
  width: 100%;
  padding: 0 24px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .top-story__heading {
    bottom: 30px;
  }
}
.top-story__heading-en {
  font-size: 8rem;
}
@media screen and (max-width: 767px) {
  .top-story__heading-en {
    font-size: 50px;
  }
}
@media screen and (max-width: 767px) {
  .top-story__heading-ja {
    font-size: 16px;
  }
}
.top-story__vision {
  padding-top: 96px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .top-story__vision {
    padding-top: 62px;
  }
}
.top-story__vision-heading-en {
  font-size: 2.2rem;
}
@media screen and (max-width: 767px) {
  .top-story__vision-heading-en {
    font-size: 18px;
  }
}
.top-story__vision-title {
  margin-top: 14px;
  font-weight: 600;
  font-size: 3.2rem;
  line-height: 1.375em;
  letter-spacing: -0.03em;
}
@media screen and (max-width: 767px) {
  .top-story__vision-title {
    font-size: 26px;
  }
}
.top-story__vision-text {
  margin: 24px auto 0;
}
@media screen and (max-width: 767px) {
  .top-story__vision-text {
    margin-top: 27px;
    text-align: left;
  }
}
.top-story__our {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .top-story__our {
    margin-top: 140px;
    padding-inline: 0;
  }
}
.top-story__our-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  margin-top: 28px;
}
@media screen and (max-width: 767px) {
  .top-story__our-body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 28px;
    margin-top: 24px;
  }
}
.top-story__our-image {
  width: 50%;
  aspect-ratio: 490/328.33;
}
@media screen and (max-width: 767px) {
  .top-story__our-image {
    width: 100%;
    aspect-ratio: 375/220.588;
  }
}
.top-story__our-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 767px) {
  .top-story__our-content {
    padding-inline: 6.4%;
  }
}
.top-story__our-quote {
  font-weight: 600;
  font-size: 2.6rem;
  letter-spacing: -0.03em;
}
@media screen and (max-width: 767px) {
  .top-story__our-quote {
    font-size: 26px;
    text-align: center;
  }
}
.top-story__our-text {
  margin-top: 16px;
  letter-spacing: -0.02em;
}
@media screen and (max-width: 767px) {
  .top-story__our-text {
    margin-top: 25px;
  }
}

.top-evid {
  padding-block: 112px 160px;
  position: relative;
  background: -webkit-gradient(linear, left top, left bottom, from(#b5effc), color-stop(5.13%, #9bdceb));
  background: linear-gradient(to bottom, #b5effc 0%, #9bdceb 5.13%);
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .top-evid {
    padding-block: 96px 106px;
  }
}
.top-evid__eval-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8.8%;
  margin-top: 9px;
}
@media screen and (max-width: 767px) {
  .top-evid__eval-list {
    grid-template-columns: 1fr;
    gap: 36px;
    margin-top: 32px;
  }
}
.top-evid__eval-item {
  position: relative;
}
.top-evid__eval-content {
  display: block;
  width: 100%;
  height: auto;
  margin-top: 93.5px;
  aspect-ratio: 400/448;
}
@media screen and (max-width: 767px) {
  .top-evid__eval-content {
    margin-top: 66px;
    margin-inline: auto;
    width: 85%;
  }
}
.top-evid__eval-bubble {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 48%;
  height: auto;
  -webkit-transition-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1);
          transition-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1);
}
@media screen and (max-width: 767px) {
  .top-evid__eval-bubble {
    width: 41%;
  }
}
.top-evid__res {
  padding-top: 88px;
}
@media screen and (max-width: 767px) {
  .top-evid__res {
    padding-top: 98px;
  }
}
@media screen and (max-width: 767px) {
  .top-evid__res-container {
    padding-inline: 0;
  }
}
.top-evid__res-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8.8%;
  margin-top: 28px;
}
@media screen and (max-width: 767px) {
  .top-evid__res-list {
    grid-template-columns: 1fr;
    gap: 170px;
    margin-top: 23px;
  }
}
.top-evid__res-card-image {
  width: 100%;
  aspect-ratio: 400/205;
  background-color: #f8f8f8;
}
.top-evid__res-card-image picture {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}
.top-evid__res-card-heading {
  margin-top: 28px;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1.33;
}
@media screen and (max-width: 767px) {
  .top-evid__res-card-heading {
    margin-top: 32px;
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .top-evid__res-card-info {
    padding-inline: 6.4%;
  }
}
.top-evid__res-card-text {
  margin-top: 20px;
  line-height: 1.6666666667em;
}
.top-evid__res-card-text--bottom {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .top-evid__res-card-text--bottom {
    margin-top: 36px;
  }
}
.top-evid__res-card-profile {
  margin-top: 64px;
}
@media screen and (max-width: 767px) {
  .top-evid__res-card-profile {
    margin-top: 68px;
  }
}
.top-evid__res-card-profile-photo {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 144px;
  height: 174px;
  background-color: #f8f8f8;
}
@media screen and (max-width: 767px) {
  .top-evid__res-card-profile-photo {
    margin: auto;
    width: 164px;
    height: 198px;
  }
}
.top-evid__res-card-profile-info {
  margin-top: 16px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
@media screen and (max-width: 767px) {
  .top-evid__res-card-profile-info {
    margin-top: 32px;
  }
}
.top-evid__res-card-profile-name {
  font-weight: 600;
  font-size: 1.8rem;
  letter-spacing: -0.03em;
  display: block;
}
@media screen and (max-width: 767px) {
  .top-evid__res-card-profile-name {
    font-size: 16px;
  }
}
.top-evid__res-card-profile-romaji {
  margin-top: 2px;
  font-weight: 600;
  font-size: 1.2rem;
  display: block;
}
@media screen and (max-width: 767px) {
  .top-evid__res-card-profile-romaji {
    font-size: 12px;
  }
}
.top-evid__res-card-profile-affiliation {
  margin-top: 8px;
  font-size: 1.4rem;
  line-height: 1.43;
}

.top-news {
  padding-block: 90px 106px;
}
@media screen and (max-width: 767px) {
  .top-news {
    padding-block: 90px 84px;
  }
}
.top-news__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.top-news__more {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 37px;
  padding: 0 24px;
  border: 1px solid #e5e5e5;
  border-radius: 19px;
  color: #333;
  font-size: 1.4rem;
  font-weight: 500;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .top-news__more {
    height: 32px;
    padding: 0 16px;
    font-size: 12px;
  }
}
.top-news__more:hover {
  background: #009be8;
  border-color: #009be8;
  color: #fff;
}
.top-news__list {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .top-news__list {
    margin-top: 28px;
  }
}
.top-news__item {
  position: relative;
  gap: 12px;
  padding-block: 24px;
}
@media screen and (max-width: 767px) {
  .top-news__item {
    padding-block: 34px;
    gap: 10px 15px;
  }
}
.top-news__meta-tag {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 105px;
  height: 17px;
  padding: 0;
  border-radius: 8.5px;
}
@media screen and (max-width: 767px) {
  .top-news__meta-tag {
    width: 85px;
  }
}
.top-news__arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 26px;
  color: #009be8;
}
@media screen and (max-width: 767px) {
  .top-news__arrow {
    width: 20px;
  }
}

.top-contact {
  padding-block: 104px 114px;
  background: #9bdceb;
}
@media screen and (max-width: 767px) {
  .top-contact {
    padding-block: 60px 80px;
  }
}
.top-contact__text {
  margin-top: 7px;
  text-align: center;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .top-contact__text {
    font-size: 14px;
  }
}
.top-contact__btn {
  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;
  margin: 37px auto 0;
  width: 246px;
  height: 45px;
  border-radius: 23px;
  background-color: #fff;
  color: #333;
  font-size: 1.6rem;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .top-contact__btn {
    margin-top: 27px;
    height: 45px;
    font-weight: 500;
  }
}
.top-contact__btn:hover {
  background-color: #009be8;
  color: #fff;
}

.top-faq {
  padding-block: 88px 95px;
  background: #d6edf7;
}
@media screen and (max-width: 767px) {
  .top-faq {
    padding-block: 58px 120px;
  }
}
.top-faq__body {
  margin-top: 7px;
}
@media screen and (max-width: 767px) {
  .top-faq__body {
    margin-top: 28px;
  }
}
.top-faq__group:not(:first-child) {
  margin-top: 32px;
}
@media screen and (max-width: 767px) {
  .top-faq__group:not(:first-child) {
    margin-top: 42px;
  }
}
.top-faq__category {
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}
@media screen and (max-width: 767px) {
  .top-faq__category {
    font-size: 14px;
    letter-spacing: 0;
  }
}
.top-faq__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .top-faq__list {
    gap: 20px;
  }
}
.top-faq__item {
  width: 100%;
}
.top-faq__item-question {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  min-height: 72px;
  padding: 16px 32px;
  background-color: #fff;
  border: 0;
  cursor: pointer;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .top-faq__item-question {
    padding: 14px 18px;
  }
}
.top-faq__item-label {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 15px;
  font: italic 500 2rem/1 "Poppins", sans-serif;
  color: #009be8;
}
@media screen and (max-width: 767px) {
  .top-faq__item-label {
    margin-right: 10px;
    font-size: 18px;
  }
}
.top-faq__item-question-text {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  font-weight: 600;
  font-size: 1.8rem;
  letter-spacing: -0.03em;
}
@media screen and (max-width: 767px) {
  .top-faq__item-question-text {
    font-size: 16px;
    line-height: 1.25em;
  }
}
.top-faq__item-toggle {
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-left: 24px;
}
@media screen and (max-width: 767px) {
  .top-faq__item-toggle {
    margin-left: 14px;
    width: 16.8px;
    height: 16.8px;
  }
}
.top-faq__item-toggle::before, .top-faq__item-toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: #009be8;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
}
.top-faq__item-toggle::before {
  width: 100%;
  height: 1px;
}
.top-faq__item-toggle::after {
  width: 1px;
  height: 100%;
}
.top-faq__item-answer {
  display: grid;
  grid-template-rows: 0fr;
  background-color: rgba(246, 253, 255, 0.8);
  -webkit-transition: grid-template-rows 0.3s ease;
  transition: grid-template-rows 0.3s ease;
  transition: grid-template-rows 0.3s ease, -ms-grid-rows 0.3s ease;
}
.top-faq__item-answer-inner {
  overflow: hidden;
}
.top-faq__item-answer-text {
  padding: 24px 24px 24px 65px;
  font-size: 1.6rem;
  line-height: 1.75em;
  letter-spacing: -0.03em;
  max-width: 880px;
}
@media screen and (max-width: 767px) {
  .top-faq__item-answer-text {
    padding: 28px 22px 28px 26px;
    font-size: 14px;
    line-height: 1.5714285714em;
    letter-spacing: 0;
  }
}
.top-faq__item--open .top-faq__item-toggle::after {
  opacity: 0;
  -webkit-transform: translate(-50%, -50%) scale(0);
          transform: translate(-50%, -50%) scale(0);
}
.top-faq__item--open .top-faq__item-answer {
  grid-template-rows: 1fr;
}

.news-list {
  padding-block: 174px 140px;
}
@media screen and (max-width: 767px) {
  .news-list {
    padding-block: 155px 186px;
    position: relative;
  }
}
.news-list__meta-tag {
  padding-inline: 19px;
}
.news-list__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 46px;
}
@media screen and (max-width: 767px) {
  .news-list__head {
    margin-bottom: 12px;
  }
}
.news-list__heading {
  letter-spacing: -0.03em;
}
@media screen and (max-width: 767px) {
  .news-list__heading {
    font-size: 40px;
  }
}
.news-list__filter-wrap {
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .news-list__filter-wrap {
    position: absolute;
    top: 68px;
    width: 100%;
    left: 0;
  }
}
.news-list__filter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 48px;
  padding: 12px;
  padding-left: 28.5px;
  border-radius: 24px;
  background-color: #009be8;
  width: 260px;
  gap: 5px;
}
@media screen and (max-width: 767px) {
  .news-list__filter {
    padding-inline: 32px 25px;
    width: 100%;
    border-radius: 0;
  }
}
.news-list__filter-search-icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 14px;
  height: 14px;
}
.news-list__filter-input {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  min-width: 0;
  border: 0;
  background-color: transparent;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 500;
  white-space: nowrap;
  font-family: inherit;
  padding-left: 12px;
}
@media screen and (max-width: 767px) {
  .news-list__filter-input {
    font-size: 13px;
  }
}
.news-list__filter-input::-webkit-input-placeholder {
  color: #fff;
}
.news-list__filter-input::-moz-placeholder {
  color: #fff;
}
.news-list__filter-input:-ms-input-placeholder {
  color: #fff;
}
.news-list__filter-input::-ms-input-placeholder {
  color: #fff;
}
.news-list__filter-input::placeholder {
  color: #fff;
}
.news-list__filter-input:focus {
  outline: none;
}
.news-list__filter-icon {
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 22px;
  height: 22px;
  border: 0;
  border-radius: 50%;
  background-color: #fff;
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.news-list__filter-icon::before, .news-list__filter-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: #009be8;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -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;
  border-radius: 2px;
}
.news-list__filter-icon::before {
  width: 10px;
  height: 1px;
}
.news-list__filter-icon::after {
  width: 1px;
  height: 10px;
}
.news-list__filter-icon:hover {
  opacity: 0.7;
}
.news-list__filter-icon[aria-expanded=true]::after {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
}
.news-list__filter-panel {
  position: absolute;
  top: 50px;
  right: 0;
  z-index: 10;
  width: 859px;
  max-width: calc(100vw - 48px);
  padding: 42px 48px 32px 70px;
  border-radius: 29px;
  background-color: #f8f8f8;
}
@media screen and (max-width: 767px) {
  .news-list__filter-panel {
    width: 100%;
    padding: 36px 36px 102px;
    max-width: 100%;
  }
}
.news-list__filter-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 12px;
  margin-top: 38px;
}
@media screen and (max-width: 767px) {
  .news-list__filter-actions {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 65px;
  }
}
.news-list__filter-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  height: 48px;
  border-radius: 24px;
  font-size: 1.4rem;
  font-weight: 500;
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.news-list__filter-btn--apply {
  padding: 0 40px;
  border: 0;
  background-color: #009be8;
  color: #fff;
}
.news-list__filter-btn--clear {
  padding: 0 32px;
  border: 1px solid #009be8;
  background-color: #fff;
  color: #009be8;
}
.news-list__filter-btn:hover {
  opacity: 0.7;
}
.news-list__filter-group-options {
  margin-top: 26px;
  gap: 46px;
}
@media screen and (max-width: 767px) {
  .news-list__filter-group-options {
    gap: 24px;
  }
}
.news-list__item-link {
  gap: 24px;
  padding: 47px 16px 47px 0;
}
@media screen and (max-width: 767px) {
  .news-list__item-link {
    gap: 20px;
    padding-block: 24px;
  }
}
.news-list__pagination {
  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: 16px;
  margin-top: 64px;
}
@media screen and (max-width: 767px) {
  .news-list__pagination {
    gap: 8px;
    margin-top: 56px;
  }
}
.news-list__pagination-arrow {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #009be8 url("../public/img/icons/arrow-pagi.svg") no-repeat center/11px 6px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.news-list__pagination-arrow--next {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.news-list__pagination-arrow:hover {
  opacity: 0.7;
}
.news-list__pagination-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
.news-list__pagination-link {
  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;
  width: 32px;
  height: 32px;
  font-size: 1.6rem;
  font-weight: 300;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  border-radius: 50%;
}
.news-list__pagination-link--current {
  font-weight: 700;
}
.news-list__pagination-link:hover {
  background: #009be8;
  color: #fff;
}
.news-list__pagination-ellipsis {
  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;
  width: 32px;
  height: 32px;
  font-size: 1.6rem;
  font-weight: 300;
}

.news-detail {
  padding-block: 88px 100px;
}
@media screen and (max-width: 767px) {
  .news-detail {
    padding-block: 36px 124px;
  }
}
.news-detail__head {
  padding-top: 46px;
  border-top: 1px solid #e0e0e0;
}
@media screen and (max-width: 767px) {
  .news-detail__head {
    padding-top: 0;
    border-top: none;
  }
}
.news-detail__title {
  margin-top: 24px;
  font-weight: 700;
  font-size: 3.2rem;
  line-height: 1.3;
  letter-spacing: -0.02em;
}
@media screen and (max-width: 767px) {
  .news-detail__title {
    font-size: 22px;
  }
}
.news-detail__media {
  margin: 48px auto 0;
  width: 100%;
  max-width: 785px;
  aspect-ratio: 785/441;
}
@media screen and (max-width: 767px) {
  .news-detail__media {
    margin-top: 42px;
  }
}
.news-detail__body {
  margin-top: 64px;
}
@media screen and (max-width: 767px) {
  .news-detail__body {
    margin-top: 50px;
  }
}
.news-detail__text {
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .news-detail__text {
    line-height: 1.75em;
  }
}
.news-detail__text + .news-detail__text {
  margin-top: 24px;
}
@media screen and (max-width: 767px) {
  .news-detail__text {
    font-size: 14px;
  }
}
.news-detail__list + .news-detail__text, .news-detail__subheading + .news-detail__text {
  margin-top: 28px;
}
@media screen and (max-width: 767px) {
  .news-detail__list + .news-detail__text, .news-detail__subheading + .news-detail__text {
    margin-top: 32px;
  }
}
.news-detail__subheading {
  margin-top: 68px;
  font-size: 2.6rem;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .news-detail__subheading {
    margin-top: 102px;
    font-size: 18px;
    line-height: 1.7777777778em;
  }
}
.news-detail__list {
  margin-top: 24px;
}
.news-detail__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 75px;
  padding-block: 62px 66px;
  border-block: 1px solid #e5e5e5;
  font-weight: 500;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .news-detail__nav {
    padding-block: 0;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 24px;
    border: none;
  }
}
.news-detail__nav-prev, .news-detail__nav-next, .news-detail__nav-back {
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.news-detail__nav-prev:hover, .news-detail__nav-next:hover, .news-detail__nav-back:hover {
  opacity: 0.7;
}
.news-detail__nav-prev, .news-detail__nav-next {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
.news-detail__nav-icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #009be8 url("../public/img/icons/arrow-pagi.svg") no-repeat center/11px 6px;
}
.news-detail__nav-icon--next {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
@media screen and (max-width: 767px) {
  .news-detail__nav-back-wrap {
    padding-block: 20px;
    border-block: 1px solid #e5e5e5;
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media screen and (max-width: 767px) {
  .news-detail__nav-back {
    margin: auto;
  }
}
.news-detail__filter {
  margin-top: 64px;
}
@media screen and (max-width: 767px) {
  .news-detail__filter {
    margin-top: 70px;
  }
}
.news-detail__filter-group-options {
  margin-top: 26px;
  gap: 58px;
}
@media screen and (max-width: 767px) {
  .news-detail__filter-group-options {
    margin-top: 24px;
    gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .news-detail .filter-group + .filter-group {
    margin-top: 38px;
  }
}

.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;
  }
}

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

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media screen and (max-width: 767px) {
  .text-center-sp {
    text-align: center !important;
  }
}