@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&family=Poppins:ital,wght@0,500;0,600;0,700;1,600&display=swap");
html {
  font-size: 62.5%;
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  margin: 0;
  background: #ffffff;
  color: #1f1f1f;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.02em;
}

@media screen and (max-width: 767px) {
  body.menu-open {
    overflow: hidden;
  }
}

#page_main_text,
#page_main_link {
  display: none;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

ol {
  margin: 0;
  padding: 0;
}

p,
h1,
h2,
h3 {
  margin: 0;
}

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
}

button {
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}

input,
select,
textarea {
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
}

textarea {
  resize: vertical;
}

figure {
  margin: 0;
}

.site-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 50;
  border-bottom: none;
  pointer-events: none;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  will-change: transform;
  transition: background-color 0.25s ease;
}
@media screen and (max-width: 1024px) {
  .site-header {
    pointer-events: auto;
  }
}
@media screen and (max-width: 767px) {
  .site-header {
    pointer-events: auto;
  }
}
@media screen and (max-width: 1024px) {
  .site-header.is-open .site-header__nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
}
@media screen and (max-width: 1024px) {
  .site-header.is-open .site-header__menu-button span:nth-child(1) {
    transform: rotate(45deg);
  }
}
@media screen and (max-width: 1024px) {
  .site-header.is-open .site-header__menu-button span:nth-child(2) {
    opacity: 0;
  }
}
@media screen and (max-width: 1024px) {
  .site-header.is-open .site-header__menu-button span:nth-child(3) {
    transform: rotate(-45deg);
  }
}

body:not(.page-home) .site-header__inner {
  animation: lower-header-in 0.65s 0.12s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes lower-header-in {
  from {
    opacity: 0;
    transform: translate3d(0, -18px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.site-header__inner,
.site-footer__inner {
  width: min(100% - 80px, 1240px);
  margin: 0 auto;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .site-header__inner,
  .site-footer__inner {
    width: min(100% - 32px, 100%);
  }
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  box-sizing: border-box;
  gap: 48px;
  width: min(100% - 96px, 1300px);
  margin-top: 24px;
  padding: 20px 40px;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(18, 37, 31, 0.08);
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
  transition: background-color 0.25s ease, box-shadow 0.25s ease;
}
@media screen and (max-width: 1279px) and (min-width: 768px) {
  .site-header__inner {
    gap: 28px;
    padding-right: 28px;
    padding-left: 28px;
  }
}
@media screen and (max-width: 767px) {
  .site-header__inner {
    width: 100%;
    margin-top: 0;
    padding: 14px 20px;
    gap: 12px;
    justify-content: space-between;
    box-shadow: none;
  }
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  text-decoration: none;
}
@media screen and (max-width: 1120px) and (min-width: 1025px) {
  .site-brand {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}
.site-brand img {
  width: 158px;
  transition: filter 0.25s ease;
}
@media screen and (max-width: 767px) {
  .site-brand img {
    width: 122px;
  }
}
@media screen and (max-width: 767px) {
  .site-brand {
    gap: 14px;
  }
}

.site-brand__text {
  font-family: "Poppins", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 1279px) and (min-width: 768px) {
  .site-brand__text {
    font-size: clamp(1.1rem, 0.886rem + 0.268vw, 1.4rem);
  }
}
@media screen and (max-width: 1120px) and (min-width: 768px) {
  .site-brand__text {
    line-height: 1.35;
  }
}
@media screen and (max-width: 767px) {
  .site-brand__text {
    font-size: 1.3rem;
    line-height: 1.45;
  }
}

.site-header__menu-button {
  display: none;
}
@media screen and (max-width: 1024px) {
  .site-header__menu-button {
    position: relative;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    flex-shrink: 0;
    appearance: none;
    -webkit-appearance: none;
    z-index: 3;
  }
}
@media screen and (max-width: 1024px) {
  .site-header__menu-button span {
    position: absolute;
    width: 28px;
    height: 1px;
    background: #68dfc0;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }
}
@media screen and (max-width: 1024px) {
  .site-header__menu-button span:nth-child(1) {
    transform: translateY(-8px);
  }
}
@media screen and (max-width: 1024px) {
  .site-header__menu-button span:nth-child(3) {
    transform: translateY(8px);
  }
}

@media screen and (max-width: 1024px) {
  .site-header__nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    padding: 0 24px 22px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.52);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease, visibility 0.25s ease;
    box-shadow: 0 14px 30px rgba(18, 37, 31, 0.08);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    z-index: 2;
  }
}
.site-header__nav ul {
  display: flex;
  align-items: center;
  gap: 0;
}
@media screen and (max-width: 1024px) {
  .site-header__nav ul {
    display: block;
  }
}
.site-header__nav li {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .site-header__nav li {
    display: block;
  }
}
.site-header__nav li + li::before {
  content: "";
  display: block;
  width: 1px;
  height: 1.4rem;
  margin: 0 18px;
  background: rgba(31, 31, 31, 0.35);
}
@media screen and (max-width: 1279px) and (min-width: 768px) {
  .site-header__nav li + li::before {
    margin: 0 12px;
  }
}
@media screen and (max-width: 1024px) {
  .site-header__nav li + li::before {
    content: none;
  }
}
.site-header__nav li:last-child {
  margin-left: 28px;
}
@media screen and (max-width: 1279px) and (min-width: 768px) {
  .site-header__nav li:last-child {
    margin-left: 18px;
  }
}
@media screen and (max-width: 1024px) {
  .site-header__nav li:last-child {
    margin-left: 0;
  }
}
.site-header__nav li:last-child::before {
  display: none;
}
.site-header__nav li:last-child a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 166px;
  padding: 13px 24px;
  background: #68dfc0;
  color: #ffffff;
  line-height: 1.4;
  letter-spacing: 0.04em;
  transition: background-color 0.25s ease, color 0.25s ease;
}
@media screen and (max-width: 1279px) and (min-width: 768px) {
  .site-header__nav li:last-child a {
    min-width: 142px;
    padding: 13px 18px;
  }
}
@media screen and (max-width: 1024px) {
  .site-header__nav li:last-child a {
    display: flex;
    justify-content: space-between;
    min-width: 0;
    padding: 22px 15px 20px;
    background: transparent;
    color: #40c7a4;
    line-height: 1.5;
    letter-spacing: 0.02em;
  }
}
.site-header__nav li:last-child a:hover {
  color: #ffffff;
  background: #40c7a4;
}
@media screen and (max-width: 1024px) {
  .site-header__nav li:last-child a:hover {
    color: #40c7a4;
    background: transparent;
  }
}
.site-header__nav li:last-child a.is-current {
  color: #ffffff;
  background: #40c7a4;
}
@media screen and (max-width: 1024px) {
  .site-header__nav li:last-child a.is-current {
    color: #40c7a4;
    background: transparent;
  }
}
.site-header__nav a {
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.03em;
  transition: color 0.25s ease;
  white-space: nowrap;
}
@media screen and (max-width: 1279px) and (min-width: 768px) {
  .site-header__nav a {
    font-size: clamp(1.2rem, 1.057rem + 0.179vw, 1.4rem);
    letter-spacing: 0.02em;
  }
}
@media screen and (max-width: 1024px) {
  .site-header__nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 15px 20px;
    color: #40c7a4;
    font-size: 1.4rem;
    line-height: 1.5;
    letter-spacing: 0.02em;
    border-bottom: 1px solid #9debd5;
  }
}
.site-header__nav a:hover, .site-header__nav a.is-current {
  color: #40c7a4;
}
@media screen and (max-width: 1024px) {
  .site-header__nav a::after {
    content: "";
    display: block;
    width: 0.7rem;
    height: 0.7rem;
    border-top: 1px solid currentColor;
    border-right: 1px solid currentColor;
    transform: rotate(45deg);
    flex-shrink: 0;
    margin-right: 0.2rem;
  }
}

.site-main {
  flex: 1 0 auto;
}

.site-footer {
  margin-top: auto;
  padding: 48px 0 0;
}
@media screen and (max-width: 767px) {
  .site-footer {
    padding-top: 0;
    position: relative;
  }
}

.site-footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 56px;
  padding-bottom: 42px;
}
@media screen and (max-width: 1279px) and (min-width: 768px) {
  .site-footer__inner {
    gap: 40px;
  }
}
@media screen and (max-width: 767px) {
  .site-footer__inner {
    display: block;
    padding-bottom: 0;
  }
}

.site-footer__info {
  min-width: 420px;
}
@media screen and (max-width: 1279px) and (min-width: 768px) {
  .site-footer__info {
    min-width: 360px;
  }
}
@media screen and (max-width: 767px) {
  .site-footer__info {
    min-width: 0;
    padding: 28px 0 24px;
    text-align: center;
  }
}

.site-brand--footer {
  margin-bottom: 28px;
}
@media screen and (max-width: 767px) {
  .site-brand--footer {
    justify-content: center;
    margin-bottom: 22px;
  }
}

.site-footer__company {
  margin-bottom: 10px;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .site-footer__company {
    font-size: 1.2rem;
    line-height: 1.6;
  }
}

.site-footer__info-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
@media screen and (max-width: 1279px) and (min-width: 768px) {
  .site-footer__info-row {
    gap: 18px;
  }
}
@media screen and (max-width: 767px) {
  .site-footer__info-row {
    display: block;
  }
}

.site-footer__address {
  flex: 1 1 auto;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.85;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .site-footer__address {
    font-size: 1.2rem;
    line-height: 1.8;
  }
}

.site-footer__corporate {
  flex: 0 0 auto;
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .site-footer__corporate {
    margin-top: 18px;
  }
}
.site-footer__corporate a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 154px;
  padding: 10px 24px;
  border: 1px solid #68dfc0;
  border-radius: 999px;
  color: #40c7a4;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: background-color 0.25s ease, color 0.25s ease;
}
@media screen and (max-width: 767px) {
  .site-footer__corporate a {
    min-width: 182px;
    padding: 11px 20px;
    font-size: 1.3rem;
  }
}
.site-footer__corporate a::after {
  content: "";
  display: block;
  width: 1.1rem;
  height: 1.1rem;
  margin-left: 8px;
  background-color: currentColor;
  mask: url("../images/link_arrow.svg") no-repeat center/contain;
  -webkit-mask: url("../images/link_arrow.svg") no-repeat center/contain;
  transition: background-color 0.25s ease;
}
.site-footer__corporate a:hover {
  background: #68dfc0;
  color: #ffffff;
}

.site-footer__nav-wrap {
  flex: 1 1 auto;
}
@media screen and (max-width: 767px) {
  .site-footer__nav-wrap {
    padding-top: 0;
  }
}

.site-footer__nav {
  padding-bottom: 22px;
  border-bottom: 1px solid #d9d9d9;
}
@media screen and (max-width: 767px) {
  .site-footer__nav {
    padding-bottom: 0;
    border-bottom: none;
  }
}
.site-footer__nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 20px 38px;
}
@media screen and (max-width: 1279px) and (min-width: 768px) {
  .site-footer__nav ul {
    gap: 18px 26px;
  }
}
@media screen and (max-width: 767px) {
  .site-footer__nav ul {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .site-footer__nav li {
    border-top: 1px solid #9debd5;
  }
}
@media screen and (max-width: 767px) {
  .site-footer__nav li:last-child {
    border-bottom: 1px solid #9debd5;
  }
}
.site-footer__nav a {
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.03em;
  transition: color 0.25s ease;
}
@media screen and (max-width: 1279px) and (min-width: 768px) {
  .site-footer__nav a {
    font-size: clamp(1.1rem, 1.057rem + 0.179vw, 1.2rem);
    letter-spacing: 0.02em;
  }
}
@media screen and (max-width: 767px) {
  .site-footer__nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 4px;
    color: #40c7a4;
    font-size: 1.4rem;
    line-height: 1.5;
    letter-spacing: 0.02em;
  }
}
.site-footer__nav a:hover, .site-footer__nav a.is-current {
  color: #40c7a4;
}
@media screen and (max-width: 767px) {
  .site-footer__nav a::after {
    content: "";
    display: block;
    width: 0.7rem;
    height: 0.7rem;
    border-top: 1px solid currentColor;
    border-right: 1px solid currentColor;
    transform: rotate(45deg);
    flex-shrink: 0;
    margin-right: 0.2rem;
  }
}

.site-footer__copyright {
  margin-top: 22px;
  font-family: "Poppins", sans-serif;
  text-align: right;
  font-size: 1.2rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .site-footer__copyright {
    margin-top: 0;
    padding: 0 0 20px;
    text-align: center;
    font-size: 1rem;
    line-height: 1.4;
    letter-spacing: 0.01em;
  }
}

@media screen and (max-width: 767px) {
  #page_main_text,
  #page_main_link {
    display: block;
    position: absolute;
    left: 16px;
    right: 16px;
    color: #1f1f1f;
    z-index: 2;
  }
  #page_main_text {
    padding: 24px 0 0;
  }
  #page_main_text h1 {
    margin-bottom: 14px;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.85;
    letter-spacing: 0.02em;
  }
  #page_main_text p {
    font-size: 1.2rem;
    line-height: 2;
    letter-spacing: 0.02em;
  }
  #page_main_text p + p {
    margin-top: 18px;
  }
  #page_main_link {
    padding: 18px 0;
    border-top: 1px solid #d9d9d9;
    border-bottom: 1px solid #d9d9d9;
    font-size: 1.2rem;
    line-height: 1.8;
  }
  #page_main_link li {
    display: inline;
  }
  #page_main_link li + li::before {
    content: " / ";
  }
  #page_main_link a {
    font-size: 1.2rem;
    line-height: 1.8;
    text-decoration: none;
  }
}
@media screen and (max-width: 1024px) {
  .page-home .site-header:not(.is-scrolled) {
    background: transparent;
  }
}
.page-home .site-header:not(.is-scrolled) .site-header__inner {
  background: transparent;
  box-shadow: none;
}
.page-home .site-header:not(.is-scrolled) .site-brand img {
  filter: brightness(0) invert(1);
}
.page-home .site-header:not(.is-scrolled) .site-brand__text {
  color: #ffffff;
}
@media screen and (max-width: 1024px) {
  .page-home .site-header:not(.is-scrolled) .site-header__menu-button span {
    background: #ffffff;
  }
}
@media screen and (min-width: 1025px) {
  .page-home .site-header:not(.is-scrolled) .site-header__nav li + li::before {
    background: rgba(255, 255, 255, 0.35);
  }
  .page-home .site-header:not(.is-scrolled) .site-header__nav a {
    color: #ffffff;
  }
  .page-home .site-header:not(.is-scrolled) .site-header__nav a:hover, .page-home .site-header:not(.is-scrolled) .site-header__nav a.is-current {
    color: rgba(255, 255, 255, 0.7);
  }
  .page-home .site-header:not(.is-scrolled) .site-header__nav li:last-child a {
    color: #ffffff;
    background: #68dfc0;
  }
  .page-home .site-header:not(.is-scrolled) .site-header__nav li:last-child a:hover {
    background: #40c7a4;
    color: #ffffff;
  }
  .page-home .site-header:not(.is-scrolled) .site-header__nav li:last-child a.is-current {
    background: #40c7a4;
    color: #ffffff;
  }
}

.sec-head__en {
  font-family: "Poppins", sans-serif;
  font-size: 6.4rem;
  font-weight: 700;
  color: #68dfc0;
  line-height: 1;
  letter-spacing: 0.02em;
  margin: 0;
}
@media screen and (max-width: 1279px) and (min-width: 768px) {
  .sec-head__en {
    font-size: clamp(4.4rem, 5vw, 6.4rem);
  }
}
@media screen and (max-width: 767px) {
  .sec-head__en {
    font-size: 4rem;
  }
}

.sec-head__title {
  margin-top: 10px;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: #1f1f1f;
}
@media screen and (max-width: 767px) {
  .sec-head__title {
    margin-top: 8px;
    font-size: 1.5rem;
  }
}

.sec-head--light .sec-head__title {
  color: #ffffff;
}

.sec-link {
  margin-top: 48px;
}
.sec-link--center {
  text-align: center;
}
.sec-link--light {
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .sec-link {
    margin-top: 32px;
    text-align: center;
  }
}

.sec-link__btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.4rem;
  font-weight: 700;
  color: #1f1f1f;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: color 0.25s ease;
}
.sec-link__btn::after {
  content: "";
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #1f1f1f;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10'%3E%3Cpolyline points='3.5,2 7,5 3.5,8' fill='none' stroke='%23ffffff' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
  transition: background-color 0.25s ease, transform 0.25s ease;
}
.sec-link__btn:hover {
  color: #555;
}
.sec-link__btn:hover::after {
  background-color: #555;
  transform: translateX(4px);
}

.sec-link--light .sec-link__btn {
  color: #ffffff;
}
.sec-link--light .sec-link__btn::after {
  background-color: rgba(255, 255, 255, 0.18);
}
.sec-link--light .sec-link__btn:hover {
  color: rgba(255, 255, 255, 0.78);
}
.sec-link--light .sec-link__btn:hover::after {
  background-color: rgba(255, 255, 255, 0.28);
}

.cta-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 18px 15px 24px;
  min-width: 288px;
  background: #ffffff;
  border: 2px solid #68dfc0;
  border-radius: 4px;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: #1f1f1f;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.22);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.cta-link::after {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  border-radius: 50%;
  background-color: #68dfc0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10'%3E%3Cpolyline points='3.5,2 7,5 3.5,8' fill='none' stroke='%23ffffff' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 12px;
  background-position: center;
  transition: transform 0.25s ease, background-color 0.25s ease;
}
@media (hover: hover) {
  .cta-link:hover {
    border-color: #40c7a4;
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.3);
  }
  .cta-link:hover::after {
    transform: translateX(4px);
    background-color: #40c7a4;
  }
}
@media screen and (max-width: 767px) {
  .cta-link {
    min-width: 0;
    width: 100%;
    font-size: 1.3rem;
    padding: 14px 16px 14px 20px;
  }
}

.lower-mv {
  position: relative;
  overflow: hidden;
  background: #303030;
}

.lower-mv__stage {
  position: relative;
  min-height: 440px;
  padding-top: 132px;
  overflow: hidden;
  background: #0b171d;
}
@media screen and (max-width: 767px) {
  .lower-mv__stage {
    min-height: 236px;
    padding-top: 62px;
  }
}

.lower-mv__img-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.lower-mv__img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(12, 26, 34, 0.52);
}
@media screen and (max-width: 767px) {
  .lower-mv__img-wrap {
    bottom: 0;
  }
}

.lower-mv__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.lower-mv__deco {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 440px;
  pointer-events: none;
  z-index: 1;
}
@media screen and (max-width: 1279px) and (min-width: 768px) {
  .lower-mv__deco {
    width: 380px;
  }
}
@media screen and (max-width: 767px) {
  .lower-mv__deco {
    top: auto;
    bottom: 0;
    width: 46%;
    min-width: 180px;
    height: 74px;
  }
}

.lower-mv__deco-rect {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 330px;
  background: #68dfc0;
  transform-origin: bottom;
  transform: scaleY(0) translateY(28px);
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
@media screen and (max-width: 1279px) and (min-width: 768px) {
  .lower-mv__deco-rect {
    width: 300px;
  }
}
@media screen and (max-width: 767px) {
  .lower-mv__deco-rect {
    width: 100%;
  }
}
.lower-mv.is-inview .lower-mv__deco-rect {
  transform: scaleY(1) translateY(0);
}

.lower-mv__deco-para {
  position: absolute;
  top: 0;
  right: 0;
  width: 660px;
  height: 100%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 100%);
  mix-blend-mode: overlay;
  clip-path: polygon(50% 0, 100% 0, 50% 100%, 0 100%);
  opacity: 0;
  transform: translateX(100%);
  transition: opacity 0.65s 0.2s ease, transform 0.85s 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  contain: paint;
}
@media screen and (max-width: 1279px) and (min-width: 768px) {
  .lower-mv__deco-para {
    width: 600px;
  }
}
@media screen and (max-width: 767px) {
  .lower-mv__deco-para {
    width: 200%;
  }
}
.lower-mv.is-inview .lower-mv__deco-para {
  opacity: 1;
  transform: translateX(0);
}

.lower-mv__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: min(100% - 96px, 1300px);
  min-height: 308px;
  margin: 0 auto;
  padding: 0 0 54px;
}
@media screen and (max-width: 767px) {
  .lower-mv__inner {
    width: min(100% - 32px, 100%);
    min-height: 174px;
    padding: 0 0 18px;
  }
}

.lower-mv__breadcrumb {
  align-self: flex-end;
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
.lower-mv__breadcrumb ol {
  display: flex;
  align-items: center;
  gap: 14px;
}
.lower-mv__breadcrumb li {
  display: flex;
  align-items: center;
  gap: 14px;
}
.lower-mv__breadcrumb li + li::before {
  content: "";
  display: block;
  width: 18px;
  height: 1px;
  background: currentColor;
}
.lower-mv__breadcrumb a {
  text-decoration: underline;
  text-underline-offset: 4px;
}
@media screen and (max-width: 767px) {
  .lower-mv__breadcrumb {
    margin-top: 36px;
    font-size: 1.1rem;
  }
}

.lower-mv__title-wrap {
  align-self: flex-end;
  width: min(66vw, 870px);
  text-align: right;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .lower-mv__title-wrap {
    position: absolute;
    right: 0;
    bottom: 16px;
    width: min(68%, 280px);
    padding-left: 0;
  }
}

.lower-mv__title-ja {
  margin-bottom: 10px;
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .lower-mv__title-ja {
    margin-bottom: 1px;
    font-size: 1.2rem;
  }
}

.lower-mv__title-en {
  font-family: "Poppins", sans-serif;
  font-size: clamp(5.8rem, 4.1vw, 7.6rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .lower-mv__title-en {
    font-size: clamp(2.7rem, 7.3vw, 3.2rem);
    white-space: nowrap;
  }
}

.lower-mv__local-nav {
  position: relative;
  z-index: 2;
  background: #303030;
}
.lower-mv__local-nav ul {
  display: flex;
  width: min(100% - 96px, 1300px);
  margin: 0 auto;
  overflow-x: auto;
}
.lower-mv__local-nav a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 12px 20px;
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 700;
  white-space: nowrap;
}
.lower-mv__local-nav a::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-left: 8px;
  border-right: 1.5px solid #68dfc0;
  border-bottom: 1.5px solid #68dfc0;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.25s ease;
}
.lower-mv__local-nav a:hover::after {
  transform: rotate(45deg) translate(3px, 1px);
}
@media screen and (max-width: 767px) {
  .lower-mv__local-nav {
    padding: 8px;
  }
  .lower-mv__local-nav ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px;
    width: 100%;
    overflow: visible;
  }
  .lower-mv__local-nav a {
    justify-content: space-between;
    min-height: 36px;
    padding: 10px 12px;
    background: #3a3a3a;
    font-size: 1.1rem;
    line-height: 1.35;
    white-space: normal;
  }
  .lower-mv__local-nav a::after {
    margin-left: 10px;
    flex-shrink: 0;
  }
}

.template-content {
  padding: 100px 0;
  background: #ffffff;
}
@media screen and (max-width: 767px) {
  .template-content {
    padding: 64px 0;
  }
}

.template-content__inner {
  width: min(100% - 80px, 1240px);
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .template-content__inner {
    width: min(100% - 40px, 100%);
  }
}

.template-content__text {
  margin-top: 28px;
  font-size: 1.5rem;
  line-height: 1.9;
}

.lower-content {
  background: #f3f3f3;
  padding: 64px 0 104px;
}
@media screen and (max-width: 767px) {
  .lower-content {
    padding: 42px 0 72px;
  }
}

.lower-content--white {
  background: #ffffff;
}

.lower-content__inner {
  width: min(100% - 80px, 1240px);
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .lower-content__inner {
    width: min(100% - 40px, 100%);
  }
}

.lower-content__inner--narrow {
  max-width: 960px;
}

.lower-section {
  padding-top: 64px;
  border-top: 1px solid #d8d8d8;
}
.lower-section:first-child {
  padding-top: 0;
  border-top: 0;
}
.lower-section + .lower-section {
  margin-top: 64px;
}
@media screen and (max-width: 767px) {
  .lower-section {
    padding-top: 44px;
  }
  .lower-section + .lower-section {
    margin-top: 44px;
  }
}

.lead-text {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.04em;
  color: #1f1f1f;
}
@media screen and (max-width: 767px) {
  .lead-text {
    font-size: 1.4rem;
    line-height: 1.9;
  }
}

.content-title {
  position: relative;
  margin-bottom: 28px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: 0.04em;
  color: #1f1f1f;
}
@media screen and (max-width: 767px) {
  .content-title {
    margin-bottom: 20px;
    font-size: 1.7rem;
  }
}

.content-title-sm {
  margin-bottom: 18px;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: #40c7a4;
}
@media screen and (max-width: 767px) {
  .content-title-sm {
    margin-bottom: 14px;
    font-size: 1.4rem;
  }
}

.editor-content {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.04em;
  color: #1f1f1f;
}
@media screen and (max-width: 767px) {
  .editor-content {
    font-size: 1.3rem;
    line-height: 1.9;
  }
}

.editor-content p + p {
  margin-top: 24px;
}
@media screen and (max-width: 767px) {
  .editor-content p + p {
    margin-top: 18px;
  }
}

.editor-content a {
  color: #40c7a4;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.25s ease;
}
.editor-content a:hover {
  color: #68dfc0;
}

.content-image {
  margin: 28px 0 0;
  background: #dddddd;
  overflow: hidden;
}
.content-image img {
  width: 100%;
  height: auto;
}

.content-image__caption {
  margin-top: 10px;
  font-size: 1.2rem;
  line-height: 1.7;
  color: #777777;
}

.article-media-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  align-items: center;
  gap: 36px;
}
@media screen and (max-width: 767px) {
  .article-media-row {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

.article-media-row__img {
  background: #dddddd;
  overflow: hidden;
}
.article-media-row__img img {
  width: 100%;
  height: auto;
}

.content-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.content-list li {
  position: relative;
  padding-left: 18px;
  font-size: 1.4rem;
  line-height: 1.9;
}
.content-list li::before {
  content: "";
  position: absolute;
  top: 0.9em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #40c7a4;
  transform: translateY(-50%);
}
.content-list li + li {
  margin-top: 12px;
}
@media screen and (max-width: 767px) {
  .content-list li {
    font-size: 1.3rem;
    line-height: 1.85;
  }
}

.content-list--number {
  counter-reset: content-list-number;
}
.content-list--number li {
  padding-left: 26px;
}
.content-list--number li::before {
  content: counter(content-list-number) ".";
  counter-increment: content-list-number;
  top: 0;
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
  font-family: "Poppins", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.9;
  color: #8a8a8a;
  transform: none;
}

.note-box {
  padding: 28px 32px;
  border: 1px solid #9debd5;
  background: rgba(255, 255, 255, 0.72);
}
@media screen and (max-width: 767px) {
  .note-box {
    padding: 22px 20px;
  }
}

.note-box__title {
  margin-bottom: 14px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.6;
  color: #40c7a4;
}
@media screen and (max-width: 767px) {
  .note-box__title {
    font-size: 1.4rem;
  }
}

.content-table-wrap {
  width: 100%;
  overflow-x: auto;
  margin-top: 36px;
}

.simple-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 36px;
}
.simple-table th,
.simple-table td {
  padding: 24px 0;
  border-bottom: 1px solid #d8d8d8;
  font-size: 1.4rem;
  line-height: 1.85;
  text-align: left;
  vertical-align: top;
}
.simple-table th {
  width: 220px;
  padding-right: 36px;
  font-weight: 700;
  color: #1f1f1f;
}
.simple-table td {
  font-weight: 400;
  color: #1f1f1f;
}
@media screen and (max-width: 767px) {
  .simple-table tr,
  .simple-table th,
  .simple-table td {
    display: block;
    width: 100%;
  }
  .simple-table tr {
    padding: 18px 0;
    border-bottom: 1px solid #d8d8d8;
  }
  .simple-table th,
  .simple-table td {
    padding: 0;
    border-bottom: 0;
    font-size: 1.3rem;
    line-height: 1.8;
  }
  .simple-table th {
    margin-bottom: 8px;
    padding-right: 0;
  }
}

.content-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  table-layout: fixed;
}
.content-table th,
.content-table td {
  padding: 18px 16px;
  border-bottom: 1px solid #d8d8d8;
  font-size: 1.3rem;
  line-height: 1.7;
  text-align: left;
  vertical-align: middle;
}
.content-table th {
  font-weight: 700;
  color: #1f1f1f;
}
.content-table thead th {
  border-bottom-color: #9debd5;
  color: #40c7a4;
  text-align: center;
}
.content-table tbody th {
  width: 24%;
}
.content-table td {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .content-table {
    min-width: 640px;
  }
  .content-table th,
  .content-table td {
    padding: 14px 12px;
    font-size: 1.2rem;
  }
}

.image-grid {
  display: grid;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .image-grid {
    gap: 14px;
  }
}

.image-grid__item {
  margin: 0;
  background: #dddddd;
  overflow: hidden;
}
.image-grid__item img {
  width: 100%;
  height: auto;
}

.image-grid--single {
  grid-template-columns: minmax(0, 1fr);
}

.image-grid--double {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media screen and (max-width: 767px) {
  .image-grid--double {
    grid-template-columns: 1fr;
  }
}

.image-grid--triple {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media screen and (max-width: 767px) {
  .image-grid--triple {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 767px) {
  .image-grid--sp-keep.image-grid--double {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .image-grid--sp-keep.image-grid--triple {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.lower-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  align-items: start;
  gap: 64px;
}
@media screen and (max-width: 1024px) {
  .lower-layout {
    grid-template-columns: minmax(0, 1fr) 250px;
    gap: 36px;
  }
}
@media screen and (max-width: 767px) {
  .lower-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.lower-layout__main {
  min-width: 0;
}

.lower-layout__side {
  min-width: 0;
}

.side-block + .side-block {
  margin-top: 56px;
}
@media screen and (max-width: 767px) {
  .side-block + .side-block {
    margin-top: 40px;
  }
}

.side-heading__ja {
  margin-bottom: 8px;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.4;
  color: #1f1f1f;
}
@media screen and (max-width: 767px) {
  .side-heading__ja {
    font-size: 1.8rem;
  }
}

.side-heading__en {
  font-family: "Poppins", sans-serif;
  font-size: 4.4rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.03em;
  color: #68dfc0;
}
@media screen and (max-width: 767px) {
  .side-heading__en {
    font-size: 3.2rem;
  }
}

.category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.category-list__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 4px 14px;
  border: 1px solid #9debd5;
  border-radius: 999px;
  background: #ffffff;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.3;
  color: #40c7a4;
  transition: background-color 0.25s ease, color 0.25s ease;
}
.category-list__link:hover {
  background: #68dfc0;
  color: #ffffff;
}

.pickup-list {
  display: grid;
  gap: 20px;
  margin-top: 24px;
}

.pickup-card {
  position: relative;
  display: block;
  padding: 12px 12px 48px;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.25s ease;
}
.pickup-card:hover {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.11);
}

.pickup-card__img-wrap {
  aspect-ratio: 16/9;
  background: #dddddd;
  overflow: hidden;
  border-radius: 5px;
}

.pickup-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.pickup-card:hover .pickup-card__img {
  transform: scale(1.06);
}

.pickup-card__body {
  margin-top: 12px;
}

.pickup-card__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.pickup-card__date {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  color: #777777;
}

.pickup-card__title {
  margin-top: 8px;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.65;
  color: #1f1f1f;
}

.pickup-card__arrow {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: #1f1f1f;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10'%3E%3Cpolyline points='3.5,2 7,5 3.5,8' fill='none' stroke='%23ffffff' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
  transition: transform 0.25s ease;
}

.pickup-card:hover .pickup-card__arrow {
  transform: translateX(4px);
}

.side-more-link {
  margin-top: 24px;
  text-align: right;
}
.side-more-link .sec-link {
  margin-top: 0;
}
.side-more-link .sec-link__btn {
  font-size: 1.1rem;
  letter-spacing: 0.12em;
}
.side-more-link .sec-link__btn::after {
  width: 24px;
  height: 24px;
  background-size: 10px;
}

.article-header {
  margin-bottom: 28px;
}

.article-header__date {
  display: block;
  margin-bottom: 18px;
  font-family: "Poppins", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #1f1f1f;
}

.article-header__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.article-header__title {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: #40c7a4;
}
@media screen and (max-width: 767px) {
  .article-header__title {
    font-size: 1.8rem;
  }
}

.article-eyecatch {
  margin-bottom: 36px;
  background: #dddddd;
  overflow: hidden;
}
.article-eyecatch img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .article-eyecatch {
    margin-bottom: 28px;
  }
}

.article-body .lower-section + .lower-section {
  margin-top: 58px;
}

.related-products {
  margin-top: 74px;
}
@media screen and (max-width: 767px) {
  .related-products {
    margin-top: 52px;
  }
}

.related-products__head {
  margin-bottom: 28px;
}
.related-products__head .sec-head__en {
  font-size: 5.2rem;
}
@media screen and (max-width: 767px) {
  .related-products__head .sec-head__en {
    font-size: 3.8rem;
  }
}

.related-products__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
@media screen and (max-width: 767px) {
  .related-products__list {
    grid-template-columns: 1fr;
  }
}

.product-card {
  position: relative;
  display: block;
  padding: 0 0 54px;
  border-radius: 7px;
  background: #ffffff;
  color: #1f1f1f;
  text-decoration: none;
  overflow: hidden;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.25s ease;
}
.product-card:hover {
  color: #1f1f1f;
  text-decoration: none;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.11);
}

.product-card__img-wrap {
  aspect-ratio: 16/9;
  border-radius: 7px 7px 0 0;
  background: #dddddd;
  overflow: hidden;
}

.product-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.product-card:hover .product-card__img {
  transform: scale(1.06);
}

.product-card__title {
  margin: 16px 18px 0;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.75;
  color: #1f1f1f;
  text-decoration: none;
}
.product-card__title span {
  display: block;
}

.product-card__text {
  margin: 10px 18px 0;
  font-size: 1.3rem;
  line-height: 1.8;
  color: #1f1f1f;
  text-decoration: none;
}

.product-card__link {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
  color: #1f1f1f;
  text-decoration: none;
}

.product-card__link::after {
  content: "";
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: #1f1f1f;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10'%3E%3Cpolyline points='3.5,2 7,5 3.5,8' fill='none' stroke='%23ffffff' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 9px;
  transition: transform 0.25s ease;
}

.product-card:hover .product-card__link::after {
  transform: translateX(4px);
}

.editor-content .product-card,
.editor-content .product-card:hover {
  color: #1f1f1f;
  text-decoration: none;
}

.editor-content .product-card * {
  text-decoration: none;
}

.article-end-link {
  margin-top: 58px;
}
@media screen and (max-width: 767px) {
  .article-end-link {
    margin-top: 42px;
  }
}

.article-image-link {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  min-height: 160px;
  padding: 34px 44px 28px 0;
  overflow: visible;
  background-image: linear-gradient(rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.78)), var(--article-image-link-bg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  color: #68dfc0;
  text-align: right;
  text-decoration: none;
}
.article-image-link:hover {
  color: #68dfc0;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .article-image-link {
    min-height: 132px;
    padding: 26px 34px 24px 0;
  }
}

.article-image-link__title {
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .article-image-link__title {
    font-size: 1.7rem;
  }
}

.article-image-link__text {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
  color: #777777;
}
.article-image-link__text::after {
  content: "";
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #1f1f1f;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10'%3E%3Cpolyline points='3.5,2 7,5 3.5,8' fill='none' stroke='%23ffffff' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 11px;
  transition: transform 0.25s ease;
}
.article-image-link:hover .article-image-link__text::after {
  transform: translateX(4px);
}
@media screen and (max-width: 767px) {
  .article-image-link__text {
    margin-top: 14px;
    font-size: 1.1rem;
  }
}

.editor-content .article-image-link,
.editor-content .article-image-link:hover {
  color: #68dfc0;
  text-decoration: none;
}

.parts-catalog {
  padding-top: 16px;
}

.parts-catalog__head {
  margin-bottom: 64px;
}
@media screen and (max-width: 767px) {
  .parts-catalog__head {
    margin-bottom: 44px;
  }
}

.parts-catalog__lead {
  margin-top: 24px;
  font-size: 1.5rem;
  line-height: 1.9;
  letter-spacing: 0.04em;
  color: #1f1f1f;
}
@media screen and (max-width: 767px) {
  .parts-catalog__lead {
    margin-top: 18px;
    font-size: 1.3rem;
  }
}

.parts-section {
  padding: 48px 0;
  border-top: 1px solid #d8d8d8;
}
.parts-section:last-child {
  padding-bottom: 0;
}
@media screen and (max-width: 767px) {
  .parts-section {
    padding: 36px 0;
  }
}

.parts-section__label {
  margin-bottom: 18px;
  font-family: "Poppins", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
  color: #40c7a4;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .parts-section__label {
    margin-bottom: 14px;
    font-size: 1.1rem;
  }
}

.parts-grid {
  display: grid;
  gap: 28px;
}
@media screen and (max-width: 767px) {
  .parts-grid {
    gap: 22px;
  }
}

.parts-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media screen and (max-width: 767px) {
  .parts-grid--two {
    grid-template-columns: 1fr;
  }
}

.parts-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media screen and (max-width: 767px) {
  .parts-grid--three {
    grid-template-columns: 1fr;
  }
}

.parts-sample-stack {
  display: grid;
  gap: 20px;
}

.parts-link-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 28px;
}
.parts-link-row .sec-link {
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .parts-link-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }
}

.parts-utility-list {
  display: grid;
  gap: 10px;
  padding: 22px 24px;
  border: 1px solid #d8d8d8;
  background: #f7f7f7;
}
.parts-utility-list code {
  padding: 2px 6px;
  background: #ffffff;
  border: 1px solid #e3e3e3;
  border-radius: 3px;
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  color: #40c7a4;
}
@media screen and (max-width: 767px) {
  .parts-utility-list {
    padding: 18px;
  }
}

.cta-section {
  position: relative;
  overflow: hidden;
  background-color: #151b1d;
  background-image: linear-gradient(rgba(0, 0, 0, 0.64), rgba(0, 0, 0, 0.64)), var(--cta-section-bg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .cta-section {
    background-image: linear-gradient(rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.78)), var(--cta-section-bg);
    background-position: center;
  }
}

.cta-section__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 520px);
  align-items: end;
  gap: 64px;
  width: min(100% - 80px, 1240px);
  min-height: 425px;
  margin: 0 auto;
  padding: 68px 0 56px;
}
@media screen and (max-width: 1024px) {
  .cta-section__inner {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 460px);
    gap: 40px;
    min-height: 380px;
  }
}
@media screen and (max-width: 767px) {
  .cta-section__inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    width: min(100% - 40px, 100%);
    min-height: 560px;
    padding: 54px 0 48px;
  }
}

.cta-section__head .sec-head__en {
  color: #68dfc0;
  font-size: 7.2rem;
  line-height: 1;
}
.cta-section__head .sec-head__title {
  margin-top: 24px;
  font-size: 2.4rem;
}
@media screen and (max-width: 1024px) {
  .cta-section__head .sec-head__en {
    font-size: clamp(3.6rem, 4vw, 5.6rem);
  }
  .cta-section__head .sec-head__title {
    margin-top: 18px;
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .cta-section__head .sec-head__en {
    font-size: 5.4rem;
  }
  .cta-section__head .sec-head__title {
    margin-top: 18px;
    font-size: 1.8rem;
  }
}

.cta-section__body {
  align-self: start;
  padding-top: 4px;
  text-align: right;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .cta-section__body {
    align-self: stretch;
    padding-top: 0;
    text-align: left;
  }
}

.cta-section__lead {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.65;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 1024px) {
  .cta-section__lead {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 767px) {
  .cta-section__lead {
    font-size: 2.2rem;
    line-height: 1.55;
  }
}

.cta-section__text {
  margin-top: 28px;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .cta-section__text {
    margin-top: 20px;
    font-size: 1.3rem;
    line-height: 1.85;
  }
}

.cta-section__cta {
  margin-top: 32px;
}
@media screen and (max-width: 767px) {
  .cta-section__cta {
    margin-top: 24px;
    width: 100%;
  }
}

.cta-section--consulting {
  margin: 48px 40px;
  border-radius: 8px;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.18), 0 4px 16px rgba(0, 0, 0, 0.1);
  background-color: #10ad81;
  background-image: none;
}
@media screen and (max-width: 767px) {
  .cta-section--consulting {
    margin: 32px 16px;
    border-radius: 6px;
  }
}
.cta-section--consulting::before, .cta-section--consulting::after {
  content: "";
  position: absolute;
  inset: 10px;
  z-index: 2;
  pointer-events: none;
}
.cta-section--consulting::before {
  border-top: 1.5px solid #ffffff;
  border-left: 1.5px solid #ffffff;
}
.cta-section--consulting::after {
  border-bottom: 1.5px solid #ffffff;
  border-right: 1.5px solid #ffffff;
}
@supports selector(:has(*)) {
  .cta-section--consulting::before {
    clip-path: inset(0 100% 100% 0);
    transition: clip-path 1.1s cubic-bezier(0.16, 1, 0.3, 1) 0.15s;
  }
  .cta-section--consulting::after {
    clip-path: inset(100% 0 0 100%);
    transition: clip-path 1.1s cubic-bezier(0.16, 1, 0.3, 1) 0.45s;
  }
  .cta-section--consulting:has(.cta-section__headline.is-revealed)::before, .cta-section--consulting:has(.cta-section__headline.is-revealed)::after {
    clip-path: inset(0 0 0 0);
  }
}
@media screen and (max-width: 767px) {
  .cta-section--consulting {
    background-image: none;
  }
}
.cta-section--consulting .cta-section__inner {
  grid-template-columns: minmax(320px, 380px) minmax(240px, 320px) minmax(260px, 1fr);
  justify-content: center;
  align-items: center;
  row-gap: 0;
  column-gap: 40px;
  min-height: 0;
  padding: 3vw 0;
}
@media screen and (max-width: 1024px) {
  .cta-section--consulting .cta-section__inner {
    grid-template-columns: minmax(180px, 220px) 1fr;
    column-gap: 32px;
    row-gap: 0;
    padding: 44px 0 0;
  }
}
@media screen and (max-width: 767px) {
  .cta-section--consulting .cta-section__inner {
    display: flex;
    flex-direction: column;
    min-height: 0;
    padding: 40px 0 0;
    gap: 0;
  }
}
.cta-section--consulting .cta-section__head {
  align-self: center;
  padding: 40px 0 56px;
}
.cta-section--consulting .cta-section__head .sec-head__en {
  color: #ffffff;
  font-size: 5.6rem;
}
.cta-section--consulting .cta-section__head .sec-head__title {
  color: #1f1f1f;
}
@media screen and (max-width: 1024px) {
  .cta-section--consulting .cta-section__head {
    grid-column: 1;
    grid-row: 1;
    padding: 32px 0 48px;
  }
  .cta-section--consulting .cta-section__head .sec-head__en {
    font-size: clamp(3.2rem, 3.5vw, 4.4rem);
  }
}
@media screen and (max-width: 767px) {
  .cta-section--consulting .cta-section__head {
    padding: 24px 0 32px;
    width: 100%;
  }
  .cta-section--consulting .cta-section__head .sec-head__en {
    font-size: 3.6rem;
  }
  .cta-section--consulting .cta-section__head .sec-head__title {
    font-size: 1.4rem;
  }
  .cta-section--consulting .cta-section__head .sec-head__title br {
    display: none;
  }
}
.cta-section--consulting .cta-section__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #1f1f1f;
  text-align: left;
  align-self: center;
  padding: 40px 0 56px;
}
@media screen and (max-width: 1024px) {
  .cta-section--consulting .cta-section__body {
    grid-column: 1/-1;
    grid-row: 2;
    padding: 0 0 48px;
  }
}
@media screen and (max-width: 767px) {
  .cta-section--consulting .cta-section__body {
    width: 100%;
    padding: 24px 0 40px;
  }
}
.cta-section--consulting .cta-section__cta {
  align-self: flex-end;
}
.cta-section--consulting .cta-section__cta br {
  display: none;
}
@media screen and (max-width: 767px) {
  .cta-section--consulting .cta-section__cta br {
    display: inline;
  }
}
.cta-section--consulting .cta-section__headline {
  text-align: left;
  padding: 0 0 8px;
}
.cta-section--consulting .cta-section__headline-text {
  font-size: 2.2rem;
  color: #ffffff;
}
@media screen and (max-width: 1024px) {
  .cta-section--consulting .cta-section__headline-text {
    font-size: 1.9rem;
  }
}
@media screen and (max-width: 767px) {
  .cta-section--consulting .cta-section__headline-text {
    font-size: 1.7rem;
  }
}
.cta-section--consulting .cta-section__text {
  color: #1f1f1f;
  font-size: 1.3rem;
}
@media screen and (max-width: 767px) {
  .cta-section--consulting .cta-section__text {
    font-size: 1.2rem;
  }
}
.cta-section--consulting .cta-link {
  border-color: #1f1f1f;
}
.cta-section--consulting .cta-link::after {
  background-color: #1f1f1f;
}
@media (hover: hover) {
  .cta-section--consulting .cta-link:hover {
    border-color: #555;
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.18);
  }
  .cta-section--consulting .cta-link:hover::after {
    background-color: #555;
  }
}

.cta-section__headline {
  grid-column: 1/-1;
  text-align: center;
  padding: 0 0 16px;
}
.cta-section__headline.js-reveal {
  opacity: 1;
  transform: none;
  transition: none;
}
@media screen and (max-width: 767px) {
  .cta-section__headline {
    padding: 0 0 12px;
  }
}

.cta-section__headline-text {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: #1f1f1f;
}
@media screen and (max-width: 1024px) {
  .cta-section__headline-text {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .cta-section__headline-text {
    font-size: 1.6rem;
  }
}

.cta-section__illust {
  align-self: center;
  min-width: 0;
}
.cta-section__illust img {
  display: block;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 1024px) {
  .cta-section__illust {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
  }
}
@media screen and (max-width: 767px) {
  .cta-section__illust {
    width: calc(100% + 40px);
    margin-left: -20px;
  }
}

@keyframes products-showcase-slide-right {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}
@keyframes products-showcase-slide-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.products-showcase {
  position: relative;
  padding: 82px 0 0;
  background: #ffffff;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .products-showcase {
    padding-top: 46px;
  }
}

.products-showcase__inner {
  position: relative;
  z-index: 2;
  width: min(100% - 80px, 1240px);
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .products-showcase__inner {
    width: min(100% - 40px, 100%);
  }
}

.products-showcase__head {
  position: relative;
  z-index: 3;
}

.products-showcase__stage {
  position: relative;
  margin-top: 44px;
  padding-bottom: 148px;
}
@media screen and (max-width: 767px) {
  .products-showcase__stage {
    margin-top: 18px;
    padding-bottom: 126px;
  }
}

.products-showcase__rail {
  position: relative;
  left: 50%;
  width: 112%;
  transform: translateX(-50%) rotate(-8deg);
  transform-origin: center;
}
@media screen and (max-width: 767px) {
  .products-showcase__rail {
    width: 165%;
    transform: translateX(-50%) rotate(-9deg);
  }
}
.products-showcase__rail + .products-showcase__rail {
  margin-top: 5px;
}
@media screen and (max-width: 767px) {
  .products-showcase__rail + .products-showcase__rail {
    margin-top: 4px;
  }
}

.products-showcase__track {
  display: flex;
  width: max-content;
  will-change: transform;
}

.products-showcase__rail--top .products-showcase__track {
  animation: products-showcase-slide-right 26s linear infinite;
}

.products-showcase__rail--bottom .products-showcase__track {
  animation: products-showcase-slide-left 24s linear infinite;
}

.products-showcase__item {
  flex: 0 0 300px;
  border-right: 4px solid #ffffff;
  overflow: hidden;
  background: #111111;
}
@media screen and (max-width: 767px) {
  .products-showcase__item {
    flex-basis: 170px;
    border-right-width: 3px;
  }
}
.products-showcase__item img {
  display: block;
  width: 100%;
  height: 164px;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .products-showcase__item img {
    height: 96px;
  }
}

.products-showcase__cta {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 22px;
  width: min(44%, 620px);
  min-height: 260px;
  padding: 34px 44px 28px 58px;
  background: #68dfc0;
  clip-path: polygon(16% 0, 100% 0, 100% 100%, 0 100%);
  opacity: 0;
  transform: translateX(72px);
  transition: opacity 0.7s 0.22s ease, transform 0.85s 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}
@media screen and (max-width: 767px) {
  .products-showcase__cta {
    left: auto;
    right: 0;
    bottom: 0;
    width: min(92%, 330px);
    min-height: 140px;
    gap: 14px;
    padding: 22px 22px 20px 30px;
  }
}

.products-showcase.is-inview .products-showcase__cta {
  opacity: 1;
  transform: translateX(0);
}

.products-showcase__cta-text {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.04em;
  color: #ffffff;
  text-align: right;
}
@media screen and (max-width: 1279px) and (min-width: 768px) {
  .products-showcase__cta-text {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .products-showcase__cta-text {
    font-size: 1.2rem;
  }
}

.products-showcase__cta .sec-link {
  margin-top: 0;
}

.products-showcase__cta .sec-link__btn {
  color: #ffffff;
}
.products-showcase__cta .sec-link__btn::after {
  background-color: rgba(255, 255, 255, 0.96);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10'%3E%3Cpolyline points='3.5,2 7,5 3.5,8' fill='none' stroke='%2340c7a4' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.products-showcase__cta .sec-link__btn:hover {
  color: rgba(255, 255, 255, 0.78);
}
.products-showcase__cta .sec-link__btn:hover::after {
  background-color: rgba(255, 255, 255, 0.96);
}

.col-cat {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border: 1.5px solid #9debd5;
  border-radius: 100px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #40c7a4;
  letter-spacing: 0.04em;
  line-height: 1.5;
  white-space: nowrap;
}

.col-card {
  display: block;
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  color: #1f1f1f;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.25s ease;
}
.col-card:hover {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.11);
}

.col-card__img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  background: #e0e0e0;
}

.col-card__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.col-card:hover .col-card__img {
  transform: scale(1.06);
}

.col-card__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.col-card__date {
  font-family: "Poppins", sans-serif;
  font-size: 1.2rem;
  color: #888888;
  letter-spacing: 0.04em;
}

.col-card__title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: #1f1f1f;
}

.col-card__excerpt {
  font-size: 1.3rem;
  line-height: 1.8;
  letter-spacing: 0.02em;
  color: #555555;
}

.col-card__arrow {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #1f1f1f;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10'%3E%3Cpolyline points='3.5,2 7,5 3.5,8' fill='none' stroke='%23ffffff' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
  transition: transform 0.25s ease;
}

.col-card:hover .col-card__arrow {
  transform: translateX(4px);
}

.col-card--compact {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px;
}
.col-card--compact .col-card__img-wrap {
  flex: 0 0 130px;
  aspect-ratio: 16/9;
  align-self: center;
}
.col-card--compact .col-card__body {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.col-card--compact .col-card__title {
  font-size: 1.4rem;
  line-height: 1.5;
}
.col-card--compact .col-card__arrow {
  flex-shrink: 0;
  margin: 0;
}
@media screen and (max-width: 1279px) and (min-width: 768px) {
  .col-card--compact {
    display: grid;
    grid-template-columns: 96px 1fr auto;
    grid-template-areas: "img   meta  arrow" "title title arrow";
    gap: 10px;
    padding: 10px;
  }
  .col-card--compact .col-card__img-wrap {
    grid-area: img;
    flex-basis: 96px;
  }
  .col-card--compact .col-card__body {
    display: contents;
  }
  .col-card--compact .col-card__meta {
    grid-area: meta;
    align-self: center;
    gap: 6px;
  }
  .col-card--compact .col-card__date {
    font-size: 1.1rem;
  }
  .col-card--compact .col-card__title {
    grid-area: title;
    font-size: 1.3rem;
    line-height: 1.45;
    padding-right: 8px;
  }
  .col-card--compact .col-card__arrow {
    grid-area: arrow;
    align-self: center;
    width: 28px;
    height: 28px;
    background-size: 10px;
  }
}
@media screen and (max-width: 767px) {
  .col-card--compact {
    display: grid;
    grid-template-columns: 90px 1fr auto;
    grid-template-areas: "img   meta  arrow" "title title arrow";
    column-gap: 12px;
    row-gap: 8px;
    padding: 10px;
  }
  .col-card--compact .col-card__img-wrap {
    grid-area: img;
  }
  .col-card--compact .col-card__body {
    display: contents;
  }
  .col-card--compact .col-card__meta {
    grid-area: meta;
    align-self: center;
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
  }
  .col-card--compact .col-card__title {
    grid-area: title;
    font-size: 1.3rem;
    padding-right: 8px;
  }
  .col-card--compact .col-card__arrow {
    grid-area: arrow;
    align-self: center;
  }
}

.col-card--featured {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 20px;
}
.col-card--featured .col-card__img-wrap {
  width: 100%;
  aspect-ratio: 16/9;
}
.col-card--featured .col-card__body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 16px 0 44px;
}
.col-card--featured .col-card__title {
  font-size: 2rem;
  line-height: 1.45;
}
.col-card--featured .col-card__arrow {
  position: absolute;
  bottom: 20px;
  right: 20px;
}
@media screen and (max-width: 767px) {
  .col-card--featured {
    padding: 14px;
  }
  .col-card--featured .col-card__body {
    padding: 12px 0 40px;
  }
  .col-card--featured .col-card__title {
    font-size: 1.7rem;
  }
  .col-card--featured .col-card__excerpt {
    font-size: 1.2rem;
  }
  .col-card--featured .col-card__arrow {
    bottom: 14px;
    right: 14px;
  }
}

.pc-only {
  display: block;
}
@media screen and (max-width: 767px) {
  .pc-only {
    display: none;
  }
}

.sp-only {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp-only {
    display: block;
  }
}

.u-en {
  font-family: "Poppins", sans-serif;
}

.u-txt-l {
  text-align: left !important;
}

.u-txt-c {
  text-align: center !important;
}

.u-txt-r {
  text-align: right !important;
}

.u-mt-0 {
  margin-top: 0 !important;
}

.u-mt-s {
  margin-top: 24px !important;
}
@media screen and (max-width: 767px) {
  .u-mt-s {
    margin-top: 16px !important;
  }
}

.u-mt-m {
  margin-top: 48px !important;
}
@media screen and (max-width: 767px) {
  .u-mt-m {
    margin-top: 32px !important;
  }
}

.u-mt-l {
  margin-top: 72px !important;
}
@media screen and (max-width: 767px) {
  .u-mt-l {
    margin-top: 48px !important;
  }
}

.u-mt-xl {
  margin-top: 104px !important;
}
@media screen and (max-width: 767px) {
  .u-mt-xl {
    margin-top: 64px !important;
  }
}

.u-mb-0 {
  margin-bottom: 0 !important;
}

.u-mb-s {
  margin-bottom: 24px !important;
}
@media screen and (max-width: 767px) {
  .u-mb-s {
    margin-bottom: 16px !important;
  }
}

.u-mb-m {
  margin-bottom: 48px !important;
}
@media screen and (max-width: 767px) {
  .u-mb-m {
    margin-bottom: 32px !important;
  }
}

.u-mb-l {
  margin-bottom: 72px !important;
}
@media screen and (max-width: 767px) {
  .u-mb-l {
    margin-bottom: 48px !important;
  }
}

.u-mb-xl {
  margin-bottom: 104px !important;
}
@media screen and (max-width: 767px) {
  .u-mb-xl {
    margin-bottom: 64px !important;
  }
}

.u-pt-0 {
  padding-top: 0 !important;
}

.u-pt-s {
  padding-top: 24px !important;
}
@media screen and (max-width: 767px) {
  .u-pt-s {
    padding-top: 16px !important;
  }
}

.u-pt-m {
  padding-top: 48px !important;
}
@media screen and (max-width: 767px) {
  .u-pt-m {
    padding-top: 32px !important;
  }
}

.u-pt-l {
  padding-top: 72px !important;
}
@media screen and (max-width: 767px) {
  .u-pt-l {
    padding-top: 48px !important;
  }
}

.u-pt-xl {
  padding-top: 104px !important;
}
@media screen and (max-width: 767px) {
  .u-pt-xl {
    padding-top: 64px !important;
  }
}

.u-pb-0 {
  padding-bottom: 0 !important;
}

.u-pb-s {
  padding-bottom: 24px !important;
}
@media screen and (max-width: 767px) {
  .u-pb-s {
    padding-bottom: 16px !important;
  }
}

.u-pb-m {
  padding-bottom: 48px !important;
}
@media screen and (max-width: 767px) {
  .u-pb-m {
    padding-bottom: 32px !important;
  }
}

.u-pb-l {
  padding-bottom: 72px !important;
}
@media screen and (max-width: 767px) {
  .u-pb-l {
    padding-bottom: 48px !important;
  }
}

.u-pb-xl {
  padding-bottom: 104px !important;
}
@media screen and (max-width: 767px) {
  .u-pb-xl {
    padding-bottom: 64px !important;
  }
}

@media screen and (max-width: 1024px) {
  .u-only-pc {
    display: none !important;
  }
}

.u-only-sp {
  display: none !important;
}
@media screen and (max-width: 767px) {
  .u-only-sp {
    display: initial !important;
  }
}

@media screen and (max-width: 767px) {
  .u-not-sp {
    display: none !important;
  }
}

.js-reveal {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
  backface-visibility: hidden;
}
.js-reveal.js-reveal--up {
  transform: translate3d(0, 32px, 0);
}
.js-reveal.js-reveal--down {
  transform: translate3d(0, -32px, 0);
}
.js-reveal.js-reveal--left {
  transform: translate3d(-28px, 0, 0);
  overflow-x: clip;
}
.js-reveal.js-reveal--right {
  transform: translate3d(28px, 0, 0);
  overflow-x: clip;
}
.js-reveal.is-revealed {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}/*# sourceMappingURL=style.css.map */