@charset "UTF-8";
html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.125rem;
  line-height: 1.7;
  color: #222222;
  background: #FFFFFF;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

:focus-visible {
  outline: 2px solid #004EA2;
  outline-offset: 2px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 2rem;
  min-height: 2.75rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  border: none;
  border-radius: 40px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}
@media (prefers-reduced-motion: reduce) {
  .button {
    transition: none;
  }
}
.button:focus-visible {
  outline: 2px solid #004EA2;
  outline-offset: 2px;
}

.button--primary {
  position: relative;
  background: #004EA2;
  color: #FFFFFF;
  font-size: 1.5rem;
  min-height: 4.0625rem;
  padding: 0.625rem 3.125rem 0.625rem 3.125rem;
  width: 100%;
  max-width: 28.125rem;
  border: 1px solid transparent;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
@media (prefers-reduced-motion: reduce) {
  .button--primary {
    transition: none;
  }
}
@media (max-width: 374px) {
  .button--primary {
    padding: 0.625rem 1.25rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .button--primary:hover {
    background: #FFFFFF;
    color: #004EA2;
    border-color: #004EA2;
  }
}

.button--cta {
  font-size: 1.25rem;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .button--cta {
    letter-spacing: 0.05em;
  }
}

.button--outline {
  background: #FFFFFF;
  color: #004EA2;
  border: 2px solid #004EA2;
}

.button--small {
  padding: 0.5rem 1.25rem;
  min-height: 2.25rem;
  font-size: 1rem;
}

.button--large {
  padding: 1rem 3rem;
  min-height: 3.5rem;
  font-size: 1.25rem;
}

.button--full {
  width: 100%;
}

.button__arrow {
  flex-shrink: 0;
}

.button--primary .button__arrow {
  position: absolute;
  top: 50%;
  right: 3.125rem;
  transform: translateY(-50%);
}

@media (max-width: 374px) {
  .button--primary .button__arrow {
    right: 1.25rem;
  }
}
.card {
  display: block;
  background: #FFFFFF;
  border: 1px solid rgba(68, 68, 68, 0.85);
  border-radius: 10px;
  padding: 0.625rem 0.625rem 1.5625rem;
  text-decoration: none;
  color: inherit;
}
.card:focus-visible {
  outline: 2px solid #004EA2;
  outline-offset: 2px;
}
.card {
  transition: opacity 0.3s ease;
}
@media (prefers-reduced-motion: reduce) {
  .card {
    transition: none;
  }
}
@media (hover: hover) and (pointer: fine) {
  .card:hover {
    opacity: 0.8;
  }
}

.card__image {
  display: block;
  width: 100%;
  height: 14.375rem;
  object-fit: cover;
  border-radius: 10px;
}

.card__body {
  padding: 1.1875rem 0.9375rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
@media screen and (min-width: 768px) {
  .card__body {
    padding: 1.3125rem 0.9375rem 0;
  }
}

.card__category {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  min-height: 1.5625rem;
  padding: 0 1.25rem;
  background: #004EA2;
  color: #FFFFFF;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  border-radius: 14.6px;
}

.card__date {
  display: inline-block;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: #555555;
  line-height: 1.8125rem;
}

.card__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333333;
  line-height: 2.1875rem;
  margin: 0;
}

.card__more {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.625rem;
  align-self: flex-end;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: #222222;
  line-height: 1.8125rem;
}

.card__arrow {
  flex-shrink: 0;
  color: #222222;
}

.works__list .swiper-slide,
.column__list .swiper-slide {
  height: auto;
}

.works__list .works__item--coming,
.column__list .column__item--coming {
  display: flex;
}

.card--coming {
  display: flex;
  flex-direction: column;
  flex: 1;
  cursor: default;
}
@media (hover: hover) and (pointer: fine) {
  .card--coming:hover {
    opacity: 1;
  }
}

.card--coming .card__body {
  flex: 1;
  justify-content: center;
}

.card__coming {
  width: 100%;
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: #555555;
  line-height: 1.8125rem;
}

.section-title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  margin-right: auto;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .section-title {
    gap: 1.1875rem;
  }
}
.section-title::after {
  content: "";
  display: block;
  align-self: stretch;
  height: 2px;
  background: #004EA2;
  margin-top: 0.125rem;
}
@media screen and (min-width: 768px) {
  .section-title::after {
    margin-top: 0.1875rem;
  }
}

.section-title__jp {
  display: block;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1;
  color: #004EA2;
  margin: 0;
  padding-left: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .section-title__jp {
    font-size: 3.375rem;
  }
}

.section-title__en {
  display: block;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #004EA2;
  margin: 0;
  padding-left: 0.3125rem;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .section-title__en {
    font-size: 1.5rem;
  }
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media screen and (min-width: 768px) {
  .container {
    padding: 0 2.5rem;
  }
}

.archive-container {
  max-width: 1340px;
  padding-bottom: 2rem;
}
@media screen and (min-width: 376px) and (max-width: 767px) {
  .archive-container {
    max-width: 34.375rem;
    margin-inline: auto;
  }
}
@media screen and (min-width: 1024px) {
  .archive-container {
    padding-bottom: 2.5rem;
  }
}

.menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.menu-list__item {
  height: 4.0625rem;
  border-bottom: 1px solid rgba(153, 153, 153, 0.6);
}

.menu-list__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0.8125rem 0.625rem 0.625rem 0.625rem;
  font-size: 1.5rem;
  font-weight: 500;
  color: #444444;
  text-decoration: none;
}

.menu-list__arrow {
  transform: translateY(-0.0625rem);
  flex-shrink: 0;
}

.breadcrumb {
  width: 100%;
  padding-left: 0;
}

.breadcrumb__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.3125rem;
}

.breadcrumb__item {
  display: inline-flex;
  align-items: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.2;
  color: inherit;
}
.breadcrumb__item:not(:last-child)::after {
  content: " ＞ ";
  margin-left: 0.3125rem;
}

.breadcrumb__link {
  color: inherit;
  text-decoration: none;
}
@media (hover: hover) and (pointer: fine) {
  .breadcrumb__link:hover {
    text-decoration: underline;
  }
}

.page-hero--single .breadcrumb__list {
  flex-wrap: nowrap;
}

.page-hero--single .breadcrumb__item {
  flex-shrink: 0;
}

.page-hero--single .breadcrumb__item:last-child {
  display: block;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  line-height: 1.2;
}

.page-hero {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: end;
  width: 100%;
  gap: 1rem;
  padding: 6.25rem 1rem 0.9375rem;
  min-height: 15.3125rem;
  color: #FFFFFF;
  background: linear-gradient(180deg, #004EA2 34.17%, #2498E8 83.58%);
  border-bottom-right-radius: 6.25rem;
}
@media screen and (min-width: 768px) {
  .page-hero {
    aspect-ratio: 1440/395;
    max-height: 24.6875rem;
    min-height: auto;
    gap: 0.75rem;
    padding: 9.375rem 4.6875rem 3.4375rem;
    border-bottom-right-radius: 19.3125rem;
  }
}

.page-title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5625rem;
  width: var(--title-w-sp, 15rem);
}
@media screen and (min-width: 768px) {
  .page-title {
    gap: 1.0625rem;
    width: auto;
  }
}

.page-title__jp {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.1875rem;
}
@media screen and (min-width: 768px) {
  .page-title__jp {
    font-size: 3.375rem;
    margin-bottom: 0.5rem;
  }
}

.page-title__en {
  font-family: "Josefin Sans", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: var(--title-en-ls-sp, 1.6px);
  line-height: 1;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .page-title__en {
    font-size: 1.5rem;
    letter-spacing: 2.4px;
    line-height: 1.1;
  }
}

.page-title::after {
  content: "";
  display: block;
  align-self: stretch;
  height: 2px;
  background: #FFFFFF;
  margin-top: 0.125rem;
}
@media screen and (min-width: 768px) {
  .page-title::after {
    width: 14.1875rem;
    margin-top: 0.1875rem;
  }
}

.page-hero--service {
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .page-hero--service::after {
    content: "";
    position: absolute;
    bottom: -7.3125rem;
    top: auto;
    right: 1rem;
    width: clamp(11.375rem, 5.5rem + 25vw, 17.5rem);
    aspect-ratio: 182/132;
    background: url("../img/service-deco-sp.webp") no-repeat center/contain;
    pointer-events: none;
  }
}
@media screen and (min-width: 768px) {
  .page-hero--service::after {
    content: "";
    position: absolute;
    top: 85.7%;
    right: 2.5rem;
    transform: translateY(-50%);
    width: clamp(20rem, 38vw, 34.1875rem);
    aspect-ratio: 547/397;
    background: url("../img/service-deco-pc.webp") no-repeat center/contain;
    pointer-events: none;
  }
}

.page-hero--flow {
  min-height: 19.375rem;
  --title-w-sp: 21.25rem;
  gap: 1.3125rem;
}
@media screen and (min-width: 768px) {
  .page-hero--flow {
    min-height: auto;
    gap: 0.8125rem;
  }
}

.page-hero--privacy {
  aspect-ratio: 375/310;
  max-height: 19.375rem;
}
@media screen and (min-width: 768px) {
  .page-hero--privacy {
    aspect-ratio: 1440/395;
    max-height: 24.6875rem;
  }
}

.page-hero--contact {
  position: relative;
}
@media screen and (max-width: 767px) {
  .page-hero--contact::after {
    content: "";
    position: absolute;
    right: 1rem;
    bottom: -3.9375rem;
    width: clamp(7.75rem, 4.375rem + 14.3vw, 11.25rem);
    aspect-ratio: 124/88;
    background: url("../img/contact-deco.webp") no-repeat center/contain;
    pointer-events: none;
  }
}
@media screen and (min-width: 768px) {
  .page-hero--contact::after {
    content: "";
    position: absolute;
    top: 108%;
    right: 4.6875rem;
    transform: translateY(-50%);
    width: clamp(18.75rem, 42.7vw, 38.4375rem);
    aspect-ratio: 615/435;
    background: url("../img/contact-deco.webp") no-repeat center/contain;
    pointer-events: none;
  }
}
@media screen and (min-width: 768px) and (max-width: 1340px) {
  .page-hero--contact::after {
    top: 70%;
    transform: translateY(-50%);
    right: 4.6875rem;
    width: clamp(13.75rem, 30vw, 27.5rem);
  }
}

.page-hero--faq {
  position: relative;
}
@media screen and (max-width: 767px) {
  .page-hero--faq::after {
    content: "";
    position: absolute;
    top: 126.9%;
    right: 1rem;
    transform: translateY(-50%);
    width: clamp(11.375rem, 5.5rem + 25vw, 17.5rem);
    aspect-ratio: 182/132;
    background: url("../img/faq-deco-sp.webp") no-repeat center/contain;
    pointer-events: none;
  }
}
@media screen and (min-width: 768px) {
  .page-hero--faq::after {
    content: "";
    position: absolute;
    top: 85.7%;
    right: 2.5rem;
    transform: translateY(-50%);
    width: clamp(18.75rem, 38vw, 34.1875rem);
    aspect-ratio: 547/397;
    background: url("../img/faq-deco-pc.webp") no-repeat center/contain;
    pointer-events: none;
  }
}

.page-hero--other-contact {
  aspect-ratio: 375/177;
  min-height: 11.0625rem;
  padding: 0rem 1.25rem 1.4375rem 1.9375rem;
  background: linear-gradient(180deg, #004EA2 34.17%, #2498E8 83.58%);
  border-radius: 0 9999px 9999px 0;
}
@media screen and (min-width: 768px) {
  .page-hero--other-contact {
    aspect-ratio: 1440/309;
    min-height: 14.1875rem;
    max-height: 19.3125rem;
    padding: 0rem 1.25rem clamp(2.75rem, 5.83%, 5.25rem) 4.625rem;
  }
}

.page-hero--404 {
  padding-bottom: 6.875rem;
}
@media screen and (min-width: 768px) {
  .page-hero--404 {
    padding-bottom: 12rem;
  }
}

.page-top {
  position: fixed;
  right: 0.75rem;
  bottom: 1rem;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 5rem;
  padding: 0;
  background: #004EA2;
  color: #FFFFFF;
  border: 1px solid #FFFFFF;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
@media (prefers-reduced-motion: reduce) {
  .page-top {
    transition: none;
  }
}
.page-top:focus-visible {
  outline: 2px solid #004EA2;
  outline-offset: 2px;
}
@media screen and (min-width: 768px) {
  .page-top {
    display: none;
  }
}
.page-top.is-visible {
  opacity: 1;
  visibility: visible;
}

.page-top__icon {
  flex-shrink: 0;
  pointer-events: none;
}

@media screen and (max-width: 767px) {
  .grecaptcha-badge {
    bottom: 6.625rem !important;
  }
}

.contact-cta {
  padding: 0.8125rem 1rem 1.4375rem;
  margin-bottom: 0;
  background: linear-gradient(104deg, #0253a7 36.5%, #177dd0 100%);
}
@media screen and (min-width: 768px) {
  .contact-cta {
    max-width: 85rem;
    margin-inline: auto;
    padding: 6.0625rem 1.5rem 6.9375rem;
  }
}

.contact-cta__lead {
  color: #FFFFFF;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.34;
  letter-spacing: -0.09em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .contact-cta__lead {
    font-size: 2rem;
    letter-spacing: 0;
  }
}

.contact-cta__lead-br2 {
  display: none;
}
@media (min-width: 375px) and (max-width: 1349px) {
  .contact-cta__lead-br2 {
    display: block;
  }
}

.contact-cta__box {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
  max-width: 32.8125rem;
  margin: 1.5rem auto 0;
  padding: 1.4375rem 0.875rem 1.625rem;
  background: #FFFFFF;
}
@media screen and (min-width: 768px) {
  .contact-cta__box {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    max-width: 75.5rem;
    margin: 2.0625rem auto 0;
    padding: 1.5rem 5rem;
  }
}
@media (min-width: 1100px) {
  .contact-cta__box {
    padding: 2.125rem 8.125rem;
  }
}
@media (min-width: 1350px) {
  .contact-cta__box {
    padding: 2.6875rem 6rem 2.6875rem 5.9375rem;
  }
}

.contact-cta__info {
  text-align: left;
}
@media (min-width: 376px) {
  .contact-cta__info {
    text-align: center;
  }
}
@media screen and (min-width: 768px) {
  .contact-cta__info {
    text-align: left;
  }
}

.contact-cta__tel {
  line-height: 1.2;
}

.contact-cta__tel-link {
  display: inline-flex;
  align-items: baseline;
  color: #333333;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
@media (prefers-reduced-motion: reduce) {
  .contact-cta__tel-link {
    transition: none;
  }
}
.contact-cta__tel-link:focus-visible {
  outline: 2px solid #004EA2;
  outline-offset: 2px;
}
@media (hover: hover) and (pointer: fine) {
  .contact-cta__tel-link:hover {
    opacity: 0.7;
  }
}

.contact-cta__tel-label {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 1.375rem;
  padding-left: 1px;
}
@media (max-width: 374px) {
  .contact-cta__tel-label {
    font-size: 1.125rem;
  }
}
@media screen and (min-width: 768px) {
  .contact-cta__tel-label {
    font-size: 1.375rem;
  }
}
@media (min-width: 1100px) {
  .contact-cta__tel-label {
    font-size: 1.6875rem;
  }
}
@media (min-width: 1350px) {
  .contact-cta__tel-label {
    font-size: 2rem;
  }
}

.contact-cta__tel-number {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 500;
  font-size: 2.3125rem;
}
@media (max-width: 374px) {
  .contact-cta__tel-number {
    font-size: 1.75rem;
  }
}
@media screen and (min-width: 768px) {
  .contact-cta__tel-number {
    font-size: 2rem;
  }
}
@media (min-width: 1100px) {
  .contact-cta__tel-number {
    font-size: 2.625rem;
  }
}
@media (min-width: 1350px) {
  .contact-cta__tel-number {
    font-size: 3.25rem;
  }
}

.contact-cta__hours {
  margin-top: 0.625rem;
  color: #333333;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  letter-spacing: -0.02em;
  font-size: 1.0625rem;
}
@media screen and (min-width: 768px) {
  .contact-cta__hours {
    font-size: 1rem;
    margin-top: -0.5rem;
    letter-spacing: 0.002em;
  }
}
@media (min-width: 1100px) {
  .contact-cta__hours {
    font-size: 1.25rem;
  }
}
@media (min-width: 1350px) {
  .contact-cta__hours {
    font-size: 1.5rem;
  }
}

.contact-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 3.125rem;
  padding: 0.75rem 0.3125rem;
  background: #0253a7;
  color: #FFFFFF;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
@media (prefers-reduced-motion: reduce) {
  .contact-cta__button {
    transition: none;
  }
}
.contact-cta__button:focus-visible {
  outline: 2px solid #004EA2;
  outline-offset: 2px;
}
@media (hover: hover) and (pointer: fine) {
  .contact-cta__button:hover {
    background: #013d7d;
  }
}
@media screen and (min-width: 768px) {
  .contact-cta__button {
    width: auto;
    min-height: 3.75rem;
    font-size: 1.125rem;
    white-space: nowrap;
  }
}
@media (min-width: 1100px) {
  .contact-cta__button {
    min-height: 4.5625rem;
    font-size: 1.3125rem;
  }
}
@media (min-width: 1350px) {
  .contact-cta__button {
    min-width: 28.375rem;
    min-height: 5.4375rem;
    font-size: 1.5rem;
  }
}

.contact-cta__button-text {
  word-break: keep-all;
}

@media screen and (min-width: 768px) {
  .u-sp-only {
    display: none;
  }
}

.skip-link {
  position: absolute;
  top: -6.25rem;
  left: 0;
  z-index: 300;
  padding: 0.5rem 1rem;
  background: #FFFFFF;
  color: #004EA2;
  font-weight: 700;
  text-decoration: underline;
}
.skip-link:focus {
  top: 0;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 1rem 1rem 0rem;
}
@media screen and (min-width: 768px) {
  .header {
    padding: 1.25rem 0.8125rem 0rem 1.0625rem;
  }
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9375rem;
  padding: 0.9375rem;
  background: #FFFFFF;
  border-radius: 50px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.header__logo {
  display: block;
  width: 6.25rem;
  flex-shrink: 0;
}

.header__logo img {
  width: 100%;
  height: auto;
}

.header__nav {
  display: none;
}

.header__link {
  position: relative;
  color: #444444;
  text-decoration: none;
  transition: color 0.3s ease;
}
@media (prefers-reduced-motion: reduce) {
  .header__link {
    transition: none;
  }
}
.header__link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.3125rem;
  height: 1px;
  background: #000000;
  opacity: 0;
  transition: opacity 0.3s ease;
}
@media (prefers-reduced-motion: reduce) {
  .header__link::after {
    transition: none;
  }
}
@media (hover: hover) and (pointer: fine) {
  .header__link:hover {
    color: #222222;
  }
  .header__link:hover::after {
    opacity: 1;
  }
}
.header__link[aria-current=page] {
  color: #222222;
}
.header__link[aria-current=page]::after {
  opacity: 1;
}

.button--cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 9.375rem;
  padding: 0.5rem 0.9375rem;
  text-align: center;
  background: #FF6200;
  border-radius: 50px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  flex-shrink: 0;
  color: #FFFFFF;
}

.button__text {
  color: inherit;
  font-weight: 700;
}

.button__text--pc {
  display: none;
}

.button__arrow--cta {
  display: none;
}

.drawer-icon {
  display: flex;
  flex-direction: column;
  gap: 0.8125rem;
  width: 2.1875rem;
  height: 2.125rem;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
}

.drawer-icon__bar {
  width: 100%;
  height: 0.125rem;
  background: #000000;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
@media (prefers-reduced-motion: reduce) {
  .drawer-icon__bar {
    transition: none;
  }
}

.drawer-icon.is-open .drawer-icon__bar:nth-child(1) {
  transform: translateY(0.9375rem) rotate(45deg);
}

.drawer-icon.is-open .drawer-icon__bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.drawer-icon.is-open .drawer-icon__bar:nth-child(3) {
  transform: translateY(-0.9375rem) rotate(-45deg);
}

body.is-drawer-open {
  overflow: hidden;
}

.drawer-content {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: #FFFFFF;
  padding: 8.9375rem 1.875rem 0rem 1.5625rem;
  overflow-y: auto;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 0.3s ease, visibility 0.3s ease;
}
@media (prefers-reduced-motion: reduce) {
  .drawer-content {
    transition: none;
  }
}
.drawer-content.is-open {
  transform: translateX(0);
  visibility: visible;
}
@media screen and (min-width: 1024px) {
  .drawer-content {
    display: none;
  }
}

.drawer-content__menu {
  margin: 0 auto;
}

@media screen and (max-width: 376px) {
  .header {
    padding: 1.25rem 0.5rem 0 0.5rem;
  }
  .header__inner {
    gap: 0.375rem;
    padding: 0.625rem;
  }
  .button--cta {
    width: 8.125rem;
    padding: 0.5rem 0.3125rem;
  }
  .button__text {
    white-space: nowrap;
  }
}
@media screen and (min-width: 768px) {
  .header__logo {
    width: 8.75rem;
  }
  .button--cta {
    width: 15.75rem;
    padding: 0.875rem 1.0625rem 0.875rem 1.0625rem;
    gap: 0.3125rem;
  }
  .button__text--sp {
    display: none;
  }
  .button__text--pc {
    display: block;
  }
  .button__arrow--cta {
    display: block;
  }
}
@media screen and (min-width: 1024px) {
  .header {
    padding: 1.25rem 1rem 0 1rem;
  }
  .header__inner {
    gap: 1.25rem;
    padding: 1.25rem 1.25rem;
  }
  .header__logo {
    width: 8.75rem;
  }
  .header__nav {
    display: block;
    flex: 1;
    min-width: 0;
  }
  .header__list {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
  }
  .header__item {
    color: #444;
    font-size: 1rem;
    font-weight: 700;
  }
  .header__link {
    display: inline-flex;
    align-items: center;
    min-height: 1.5rem;
    white-space: nowrap;
  }
  .drawer-icon {
    display: none;
  }
  .button--cta {
    width: 15.75rem;
    padding: 0.875rem 1.0625rem 0.875rem 1.0625rem;
    gap: 0.3125rem;
  }
  .button__text--pc {
    display: block;
  }
  .button__text--sp {
    display: none;
  }
  .button__arrow--cta {
    display: block;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1099px) {
  .header__list {
    gap: 0.375rem;
  }
  .header__item {
    font-size: 0.9375rem;
  }
}
@media screen and (min-width: 1440px) {
  .header {
    padding: 2.5rem 4.6875rem 0 4.6875rem;
  }
  .header__inner {
    gap: 2.625rem;
    padding: 0.9375rem 2.1875rem;
  }
  .header__list {
    display: flex;
    justify-content: space-between;
    gap: 1.25rem;
  }
  .header__item {
    font-size: 1.125rem;
  }
}
.footer {
  background: #FFFFFF;
}
@media screen and (min-width: 768px) {
  .footer {
    padding-top: 2.5rem;
  }
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  padding: 2.25rem 1rem 2.5rem 1rem;
}
@media screen and (min-width: 1024px) {
  .footer__inner {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1.0625rem 3.4375rem;
    padding: 2.375rem 1.875rem 2.9375rem;
    max-width: 90rem;
    margin: 0 auto;
  }
}

.footer__area {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .footer__area {
    gap: 0.8125rem;
    order: 2;
    flex: 1;
    max-width: 55.5625rem;
  }
}

.footer__area-title {
  text-align: center;
  color: #004EA2;
  font-size: 2.625rem;
  font-weight: 700;
  line-height: 1;
}
@media screen and (min-width: 1024px) {
  .footer__area-title {
    font-size: 3.375rem;
  }
}

.footer__area-box {
  background: #e2f4ff;
  border-radius: 1.875rem;
  padding: 1.5rem 1.4375rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
@media screen and (min-width: 1024px) {
  .footer__area-box {
    padding: 1.5625rem 1.875rem 2.625rem 1.875rem;
    gap: 0.9375rem;
  }
}

.footer__area-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 2.5rem;
  background: #2498e8;
  color: #FFFFFF;
  font-size: 1.5rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .footer__area-badge {
    height: 2.8125rem;
    width: 18.75rem;
  }
}

.footer__area-list {
  font-size: 1.125rem;
  line-height: 2.125rem;
  color: #222222;
  font-weight: 500;
  padding: 0;
  font-feature-settings: "palt";
}
@media screen and (min-width: 1024px) {
  .footer__area-list {
    padding: 0;
  }
}

.footer__nav {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .footer__nav {
    order: 3;
    flex: 0 0 100%;
  }
}

.footer__nav-list {
  margin: 0 auto;
  gap: 1.25rem;
}
.footer__nav-list .menu-list__item {
  height: 3.4375rem;
}
.footer__nav-list .menu-list__link {
  padding: 0 0.625rem 1.25rem 0.625rem;
}
@media screen and (min-width: 1024px) {
  .footer__nav-list {
    display: block;
    text-align: center;
    width: 100%;
    font-weight: 700;
    line-height: 1.8;
  }
  .footer__nav-list .menu-list__item {
    display: inline;
    height: auto;
    border-bottom: none;
  }
  .footer__nav-list .menu-list__item:not(:last-child)::after {
    content: " ｜ ";
    margin: 0 0.80625rem;
    color: #444444;
  }
  .footer__nav-list .menu-list__link {
    display: inline;
    padding: 0;
    height: auto;
    font-size: 1.125rem;
    color: #444444;
    white-space: nowrap;
  }
  .footer__nav-list .menu-list__arrow {
    display: none;
  }
}

.footer__company {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .footer__company {
    order: 1;
    flex-shrink: 0;
    width: 23.4375rem;
    align-items: flex-start;
    gap: 0.5rem;
  }
}

.footer__logo img {
  width: 20rem;
  height: auto;
  display: block;
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  .footer__logo img {
    width: 23.4375rem;
    padding-top: 0.5625rem;
  }
}

.footer__info {
  width: 20rem;
  max-width: 100%;
  align-self: center;
  font-size: 1.125rem;
  font-weight: 500;
  color: #444444;
  line-height: 1.45;
}
.footer__info p {
  margin: 0;
}
@media screen and (max-width: 374px) {
  .footer__info {
    padding: 0;
    margin: 0;
  }
}
@media screen and (min-width: 1024px) {
  .footer__info {
    max-width: none;
    align-self: flex-start;
    padding: 0;
    margin: 0;
  }
}

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

.footer__copyright {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 3.9375rem;
  background: #004EA2;
}
@media screen and (min-width: 1024px) {
  .footer__copyright {
    min-height: 0;
    padding: 1.5rem 0;
  }
}

.footer__copy-text {
  color: #FFFFFF;
  font-weight: 700;
  font-size: 1rem;
}
@media screen and (min-width: 1024px) {
  .footer__copy-text {
    font-size: 1.25rem;
  }
}

.fv {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  container-type: inline-size;
}
@media screen and (min-width: 768px) {
  .fv {
    aspect-ratio: 1440/922;
  }
}

.fv__bg {
  position: relative;
  z-index: 0;
  width: 100%;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .fv__bg {
    position: absolute;
    inset: 0;
  }
}

.fv__bg-image {
  display: block;
  width: 100%;
  height: auto;
}
@media screen and (min-width: 768px) {
  .fv__bg-image {
    height: 100%;
    object-fit: cover;
  }
}

.fv__wave {
  position: relative;
  width: 100%;
  z-index: 3;
  aspect-ratio: 375/543;
  max-height: 43.75rem;
  margin-top: -44.5333333333vw;
  margin-top: -44.5333333333cqw;
  background: linear-gradient(to bottom, transparent 0, transparent calc(44.2666666667vw - 3px), #0A62B5 calc(44.2666666667vw - 2px), #2498E8 100%);
  background: linear-gradient(to bottom, transparent 0, transparent calc(44.2666666667cqw - 3px), #0A62B5 calc(44.2666666667cqw - 2px), #2498E8 100%);
}
.fv__wave::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  aspect-ratio: 375/166;
  background: url("../img/fv-wave-sp.svg") no-repeat top center/100% auto;
  pointer-events: none;
}
.fv__wave::after {
  content: "";
  position: absolute;
  top: calc(44.2666666667vw - 3px);
  top: calc(44.2666666667cqw - 3px);
  left: 0;
  width: 100%;
  height: 6px;
  background: #0A62B5;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .fv__wave {
    aspect-ratio: auto;
    height: 100%;
    max-height: none;
    margin-top: 0;
    background: none;
  }
  .fv__wave::before {
    top: auto;
    bottom: -1px;
    aspect-ratio: 1440/400;
    background: url("../img/fv-wave-pc.svg") no-repeat bottom center/100% auto;
  }
  .fv__wave::after {
    content: none;
  }
}

.fv__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.125rem;
  padding: 21.0666666667vw 0.4375rem 2rem 0.5rem;
  padding: 21.0666666667cqw 0.4375rem 2rem 0.5rem;
}
@media screen and (max-width: 374px) {
  .fv__inner {
    gap: 0.625rem;
    padding: 16.0427807487vw 0rem 2rem 0rem;
    padding: 16.0427807487cqw 0rem 2rem 0rem;
  }
}
@media screen and (min-width: 768px) {
  .fv__inner {
    width: 100%;
    height: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    display: block;
  }
}

.fv__catch {
  width: 100%;
  color: #FFFFFF;
  text-align: left;
  padding: 0 0.75rem 0.1875rem;
}
@media screen and (max-width: 374px) {
  .fv__catch {
    padding: 0 0.5rem 0;
  }
}
@media screen and (min-width: 768px) {
  .fv__catch {
    position: absolute;
    top: 71%;
    width: 51.74%;
    padding: 0;
  }
}
@media screen and (min-width: 999px) {
  .fv__catch {
    left: 3.47%;
    padding: 0 0 0 0.83%;
  }
}

.fv__catch-main {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 2.875rem;
  line-height: 1.43;
}
@media screen and (max-width: 374px) {
  .fv__catch-main {
    font-size: 2.625rem;
  }
}
@media screen and (min-width: 400px) {
  .fv__catch-main {
    font-size: 3.1875rem;
  }
}
@media screen and (min-width: 768px) {
  .fv__catch-main {
    font-size: clamp(3rem, 5vw, 4.5rem);
    line-height: 1.2;
  }
}
@media (min-width: 375px) and (max-width: 767px) {
  .fv__catch-main {
    white-space: nowrap;
  }
}
@media (min-width: 768px) and (max-width: 999px) {
  .fv__catch-main {
    white-space: nowrap;
  }
}

@media screen and (min-width: 768px) {
  .fv__catch-strong {
    font-size: calc(2.5625rem + (100vw - 48rem) * 9 / 232);
  }
}
@media screen and (min-width: 1000px) {
  .fv__catch-strong {
    font-size: clamp(3rem, 5vw, 4.5rem);
  }
}

@media screen and (min-width: 768px) {
  .fv__catch-weak {
    font-size: calc(2.25rem + (100vw - 48rem) * 8 / 232);
  }
}
@media screen and (min-width: 1000px) {
  .fv__catch-weak {
    font-size: clamp(2.625rem, 4.4444444444vw, 4rem);
  }
}

@media screen and (min-width: 768px) {
  .fv__catch-br-sp {
    display: none;
  }
}

.fv__catch-sub {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.4;
  margin-top: 0.6875rem;
}
@media screen and (min-width: 400px) {
  .fv__catch-sub {
    font-size: 1.1875rem;
  }
}
@media (min-width: 375px) and (max-width: 767px) {
  .fv__catch-sub {
    white-space: nowrap;
  }
}
@media screen and (min-width: 768px) {
  .fv__catch-sub {
    font-size: clamp(1.25rem, 2.6388888889vw, 2.375rem);
    margin-top: 1.1875rem;
  }
}

.fv__medals {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 0;
  list-style: none;
  transform: translateY(0.0625rem);
}
@media screen and (min-width: 400px) {
  .fv__medals {
    zoom: 1.2;
  }
}
@media screen and (min-width: 768px) {
  .fv__medals {
    position: absolute;
    top: 39.5%;
    left: 2.85%;
    justify-content: flex-start;
    zoom: 1;
  }
}

.medal {
  position: relative;
  width: 10.9375rem;
  height: 8.625rem;
  background: url("../img/medal-frame.webp") no-repeat center/contain;
  font-family: "Zen Antique Soft", serif;
  color: #222222;
}
@media screen and (min-width: 768px) {
  .medal {
    width: clamp(12.5rem, 23.125vw, 20.8125rem);
    height: clamp(9.8125rem, 18.125vw, 16.3125rem);
  }
}

.medal__number-1 {
  position: absolute;
  top: 22%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: baseline;
  gap: 0.125rem;
  font-weight: 400;
  white-space: nowrap;
  line-height: 1;
}

.medal__number-2 {
  position: absolute;
  top: 22%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: baseline;
  gap: 0.125rem;
  font-weight: 400;
  white-space: nowrap;
  line-height: 1;
}

.medal__number-value-1 {
  font-size: 3.25rem;
  letter-spacing: -0.05em;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .medal__number-value-1 {
    font-size: clamp(3.75rem, 6.8055555556vw, 6.125rem);
    transform: translateY(-0.0625rem);
  }
}

.medal__number-value-2 {
  font-size: 3.25rem;
  letter-spacing: -0.05em;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .medal__number-value-2 {
    font-size: clamp(3.75rem, 6.8055555556vw, 6.125rem);
    transform: translate(0rem, 0rem);
  }
}

.medal__number-unit-1 {
  font-size: 1.3125rem;
  line-height: 1;
  transform: translateX(-0.0625rem);
}
@media screen and (min-width: 768px) {
  .medal__number-unit-1 {
    font-size: clamp(1.5rem, 2.7777777778vw, 2.5rem);
    transform: translateY(-0.125rem);
  }
}

.medal__number-unit-2 {
  font-size: 1.3125rem;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .medal__number-unit-2 {
    font-size: clamp(1.5rem, 2.7777777778vw, 2.5rem);
    transform: translate(0.1875rem, -0.375rem);
  }
}

.medal__number-sub {
  position: absolute;
  top: 30%;
  left: 46%;
  font-family: "Zen Antique Soft", serif;
  font-size: 0.8125rem;
  font-weight: 400;
  color: #222222;
  line-height: 1.4;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .medal__number-sub {
    top: 29.5%;
    left: 46.6%;
    font-size: clamp(0.875rem, 1.6666666667vw, 1.5rem);
  }
}

.medal__label-1 {
  position: absolute;
  bottom: 24%;
  left: 49%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.1875rem;
  font-size: 0.8125rem;
  line-height: 1;
  white-space: nowrap;
  letter-spacing: -0.03em;
}
@media screen and (min-width: 768px) {
  .medal__label-1 {
    font-size: clamp(0.875rem, 1.6666666667vw, 1.5rem);
    bottom: 26%;
    left: 50%;
  }
}

.medal__label-2 {
  position: absolute;
  bottom: 24%;
  left: 49%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.1875rem;
  font-size: 0.8125rem;
  line-height: 1;
  white-space: nowrap;
  letter-spacing: -0.03em;
}
@media screen and (min-width: 768px) {
  .medal__label-2 {
    font-size: clamp(0.875rem, 1.6666666667vw, 1.5rem);
    bottom: 26%;
    left: 49%;
  }
}

.medal__label-deco-1 {
  font-size: 0.5rem;
  letter-spacing: 0.14em;
  position: relative;
  transform: translateX(0.0625rem);
}
@media screen and (min-width: 768px) {
  .medal__label-deco-1 {
    font-size: clamp(0.625rem, 1.1111111111vw, 1rem);
  }
}

.medal__label-deco-2 {
  font-size: 0.5rem;
  letter-spacing: 0.14em;
}
@media screen and (min-width: 768px) {
  .medal__label-deco-2 {
    font-size: clamp(0.625rem, 1.1111111111vw, 1rem);
  }
}

.fv__banner {
  width: 100%;
  max-width: 22.5rem;
  margin: 0 auto;
}
@media screen and (min-width: 400px) {
  .fv__banner {
    max-width: 36.25rem;
  }
}
@media screen and (min-width: 768px) {
  .fv__banner {
    position: absolute;
    top: 82.5%;
    left: 57.78%;
    width: 39.38%;
    max-width: none;
    margin: 0;
    transition: opacity 0.6s ease-out;
  }
  .fv__banner.is-hidden {
    opacity: 0;
    pointer-events: none;
  }
}

.fv__banner-link {
  display: block;
  transition: opacity 0.3s ease;
}
@media (prefers-reduced-motion: reduce) {
  .fv__banner-link {
    transition: none;
  }
}
.fv__banner-link:focus-visible {
  outline: 2px solid #004EA2;
  outline-offset: 2px;
}
@media screen and (min-width: 768px) {
  .fv__banner-link {
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08), 0 12px 24px rgba(0, 0, 0, 0.18);
    transition: opacity 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  }
}
@media screen and (min-width: 768px) and (hover: hover) and (pointer: fine) {
  .fv__banner-link:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12), 0 18px 36px rgba(0, 0, 0, 0.25);
    transform: translateY(-0.125rem);
  }
}

.fv__banner-image {
  display: block;
  width: 100%;
  height: auto;
}

.works {
  position: relative;
  isolation: isolate;
  margin-top: -0.125rem;
  padding-top: 5.3125rem;
  padding-bottom: 3.125rem;
}
@media screen and (min-width: 768px) {
  .works {
    padding-top: 10.8125rem;
    padding-bottom: 9.375rem;
  }
}

.works::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  aspect-ratio: 375/92;
  z-index: -2;
  pointer-events: none;
  background: url("../img/bg-wave-blue-sp.svg") no-repeat top center/100% 100%;
}
@media screen and (min-width: 768px) {
  .works::after {
    aspect-ratio: 1440/288;
    background: url("../img/bg-wave-blue-pc.svg") no-repeat top center/100% 100%;
  }
}

.works::before {
  content: "";
  position: absolute;
  top: -3px;
  left: 0;
  width: 100%;
  height: 6px;
  z-index: -1;
  background: #2498E8;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .works::before {
    background: #2193E3;
  }
}

.works__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.875rem;
  padding: 1.375rem 0.75rem 1.875rem 0.75rem;
}
@media screen and (min-width: 768px) {
  .works__inner {
    max-width: 81.1875rem;
    margin: 0 auto;
    gap: 3.125rem;
    padding: 0 2.8125rem;
  }
}
@media (min-width: 1200px) {
  .works__inner {
    padding: 0 3.125rem;
  }
}

.works__slider {
  position: relative;
  width: 100%;
  max-width: 25rem;
  margin: 0 auto;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .works__slider {
    max-width: 45.125rem;
    margin: 0 auto;
  }
}
@media (min-width: 1200px) {
  .works__slider {
    max-width: 68.375rem;
  }
}

.works__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.works__item {
  display: flex;
  justify-content: center;
  width: 100%;
}

.works__controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 18.75rem;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .works__controls {
    position: absolute;
    top: calc(50% + 0.8rem);
    left: 50%;
    right: auto;
    width: 100%;
    max-width: 81.25rem;
    margin: 0;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1;
  }
}

.works__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.125rem;
  height: 3.125rem;
  padding: 0;
  background: transparent;
  border: none;
  color: #004EA2;
  cursor: pointer;
  transform: translateX(-2px);
  transition: opacity 0.3s ease;
}
@media (prefers-reduced-motion: reduce) {
  .works__nav {
    transition: none;
  }
}
.works__nav:focus-visible {
  outline: 2px solid #004EA2;
  outline-offset: 2px;
}
@media (hover: hover) and (pointer: fine) {
  .works__nav:hover {
    opacity: 0.6;
  }
}
@media screen and (min-width: 768px) {
  .works__nav {
    width: 5rem;
    height: 5rem;
    pointer-events: auto;
    transform: none;
  }
}

.works__nav-icon {
  width: 1.25rem;
  height: 2.125rem;
}
@media screen and (min-width: 768px) {
  .works__nav-icon {
    width: 1.875rem;
    height: 3.1875rem;
  }
}

.works__nav-icon--prev {
  transform: scaleX(-1);
}

@media screen and (min-width: 768px) {
  .works__button-wrap {
    margin-top: 2.1875rem;
  }
}

.works__button {
  margin: 0 auto;
}

.section-title--works {
  width: 18.4375rem;
}
@media screen and (min-width: 768px) {
  .section-title--works {
    width: 26.5625rem;
  }
}

.button__text--works {
  width: 14.6875rem;
}
@media screen and (min-width: 768px) {
  .button__text--works {
    width: 21.4375rem;
  }
}

.achievements-service {
  display: flex;
  flex-direction: column;
  gap: 3.125rem;
  padding: 2.1875rem 1.25rem 2.0625rem;
  border-radius: 20px;
  background-image: linear-gradient(129.519deg, #a8dbf4 3.19%, #e8f7ff 90.43%);
}
@media screen and (min-width: 768px) {
  .achievements-service {
    gap: 4.875rem;
    max-width: 83.4375rem;
    margin: 0 auto;
    padding: 6.25rem 0rem;
    background-image: linear-gradient(166.329deg, #a8dbf4 3.19%, #e9f7ff 90.43%);
  }
}
@media (min-width: 1200px) {
  .achievements-service {
    padding: 6.25rem 3.125rem;
  }
}

.achievements__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  padding-bottom: 1.25rem;
}
@media screen and (min-width: 768px) {
  .achievements__inner {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0rem;
    max-width: 83.4375rem;
    margin: 0 auto;
    padding: 1.25rem 1.75rem;
  }
}
@media (min-width: 1053px) {
  .achievements__inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5625rem;
    max-width: 83.4375rem;
    margin: 0 auto;
    padding: 1.25rem 1.75rem;
  }
}

.achievements__media {
  width: 100%;
  max-width: 25rem;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .achievements__media {
    max-width: 36.25rem;
  }
}
@media (min-width: 1053px) {
  .achievements__media {
    flex: 1 1 0;
    min-width: 0;
    max-width: 36.25rem;
    margin: 0;
  }
}

.achievements__image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 335/400;
  object-fit: cover;
}
@media screen and (min-width: 768px) {
  .achievements__image {
    aspect-ratio: 580/360;
  }
}

.achievements__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.875rem;
  width: 100%;
  max-width: 20.9375rem;
}
@media screen and (min-width: 768px) {
  .achievements__content {
    max-width: 34.375rem;
    padding: 2rem 0rem;
  }
}
@media (min-width: 1053px) {
  .achievements__content {
    flex: 1 1 0;
    min-width: 0;
    max-width: 34.375rem;
    padding: 2rem 0rem 2rem 1.5625rem;
  }
}

.achievements__lead {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.42;
  color: #333333;
}

.achievements__button {
  margin-top: 0.0625rem;
}

.section-title--achievements {
  width: 11.5rem;
}
@media screen and (min-width: 768px) {
  .section-title--achievements {
    width: 16.125rem;
  }
}

.section-title--achievements .section-title__jp {
  color: #333333;
}

.section-title--achievements .section-title__en {
  color: #333333;
}

.section-title--achievements::after {
  background: #333333;
}

.button__text--achievements {
  width: 14.0625rem;
}
@media screen and (min-width: 768px) {
  .button__text--achievements {
    width: 21.25rem;
  }
}

.service__inner {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 2rem;
  padding-bottom: 1.375rem;
}
@media screen and (min-width: 768px) {
  .service__inner {
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
    gap: 0rem;
    max-width: 83.4375rem;
    margin: 0 auto;
    padding: 1.25rem 1.75rem;
  }
}
@media (min-width: 1053px) {
  .service__inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0rem;
    max-width: 83.4375rem;
    margin: 0 auto;
    padding: 1.25rem 2.3125rem 1.25rem 1.25rem;
  }
}

.service__media {
  width: 100%;
  max-width: 25rem;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .service__media {
    max-width: 36.25rem;
  }
}
@media (min-width: 1053px) {
  .service__media {
    flex: 1 1 0;
    min-width: 0;
    max-width: 36.25rem;
    margin: 0;
  }
}

.service__image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 335/400;
  object-fit: cover;
}
@media screen and (min-width: 768px) {
  .service__image {
    aspect-ratio: 580/400;
  }
}

.service__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.875rem;
  width: 100%;
  max-width: 20.9375rem;
}
@media screen and (min-width: 768px) {
  .service__content {
    max-width: 34.375rem;
    padding: 2rem 0rem;
  }
}
@media (min-width: 1053px) {
  .service__content {
    flex: 1 1 0;
    min-width: 0;
    max-width: 36.25rem;
    padding: 3.5625rem 2.25rem 3.4375rem 5.0625rem;
  }
}

.service__lead {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.44;
  color: #333333;
}
@media screen and (min-width: 768px) {
  .service__lead {
    font-size: 1.5rem;
  }
}

.service__button {
  margin: 0;
  transform: translateY(0.0625rem);
}

@media (min-width: 500px) and (max-width: 767px) {
  .achievements__content,
  .service__content {
    max-width: 25rem;
  }
  .achievements__lead,
  .service__lead {
    white-space: nowrap;
  }
}
.section-title--service {
  margin-top: -0.125rem;
  width: 17.1875rem;
}
@media screen and (min-width: 768px) {
  .section-title--service {
    width: 22.4375rem;
  }
}

.section-title--service .section-title__jp {
  color: #333333;
}

.section-title--service .section-title__en {
  color: #333333;
}

.section-title--service::after {
  background: #333333;
}

.button__text--service {
  width: 14.0625rem;
}
@media screen and (min-width: 768px) {
  .button__text--service {
    width: 21.25rem;
  }
}

.flow {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 3.125rem 0 0rem;
}
.flow::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -0.0625rem;
  width: 100%;
  aspect-ratio: 375/194;
  background: url("../img/bg-wave-flow-sp.svg") no-repeat right bottom/100% 100%;
  pointer-events: none;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .flow {
    padding: 5.5625rem 0 8.3125rem;
  }
  .flow::after {
    bottom: 0rem;
    aspect-ratio: 1440/270;
    background-image: url("../img/bg-wave-flow-pc.svg");
  }
}

.flow__inner {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
  max-width: 90rem;
  margin: 0 auto;
  padding: 2.5rem 0.9375rem 3.4375rem;
}
@media screen and (min-width: 768px) {
  .flow__inner {
    gap: 2rem;
    padding: 0 1.25rem;
  }
}
@media (min-width: 1200px) {
  .flow__inner {
    padding: 0 7.5rem;
  }
}

.flow__media {
  width: 100%;
  max-width: 25rem;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .flow__media {
    max-width: none;
  }
}

.flow__image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 345/350;
  object-fit: cover;
}
@media screen and (min-width: 768px) {
  .flow__image {
    aspect-ratio: 1200/350;
  }
}

.flow__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .flow__content {
    flex-direction: column;
    text-align: left;
    align-items: flex-start;
    gap: 1.25rem;
  }
}
@media (min-width: 942px) {
  .flow__content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 1.25rem;
  }
}

.flow__lead {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.45;
  color: #444444;
  transform: translateY(-0.625rem);
}
@media screen and (min-width: 768px) {
  .flow__lead {
    font-size: 1.5rem;
    text-align: left;
    transform: translateY(-0.0625rem);
  }
}

.flow__button {
  margin: 0;
}

.section-title--flow {
  width: 17.4375rem;
}
@media screen and (min-width: 768px) {
  .section-title--flow {
    padding: 1.3125rem 0rem 1.9375rem;
    width: 25.0625rem;
  }
}

.button__text--flow {
  width: 14.6875rem;
}
@media screen and (min-width: 768px) {
  .button__text--flow {
    width: 12.1875rem;
  }
}

.faq {
  margin-top: -0.125rem;
  padding: 2.5rem 0 2.5rem;
  background: linear-gradient(to bottom, #A2DDFF 0%, #D4E2EA 100%);
}
@media screen and (min-width: 768px) {
  .faq {
    padding: 4.25rem 0 5.125rem;
  }
}

.faq__inner {
  display: flex;
  flex-direction: column;
  gap: 1.8125rem;
  max-width: 90rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}
@media screen and (min-width: 768px) {
  .faq__inner {
    gap: 3.0625rem;
    padding: 0 1.25rem;
  }
}
@media (min-width: 1200px) {
  .faq__inner {
    padding: 0 7.5rem;
  }
}

.section-title--faq {
  width: 17.1875rem;
}
@media screen and (min-width: 768px) {
  .section-title--faq {
    width: 22.4375rem;
  }
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .faq__list {
    gap: 3.125rem;
  }
}

.faq__item {
  width: 100%;
}

.faq__details {
  background: #FFFFFF;
  border: 1px solid #D9D9D9;
  border-radius: 30px;
}

.faq__summary {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.875rem 0.9375rem 1.875rem 0.9375rem;
  list-style: none;
  cursor: pointer;
}
.faq__summary:focus-visible {
  outline: 2px solid #004EA2;
  outline-offset: 2px;
}
.faq__summary {
  transition: opacity 0.3s ease;
}
@media (prefers-reduced-motion: reduce) {
  .faq__summary {
    transition: none;
  }
}
.faq__summary::-webkit-details-marker {
  display: none;
}
@media (hover: hover) and (pointer: fine) {
  .faq__summary:hover {
    opacity: 0.7;
  }
}
@media screen and (min-width: 768px) {
  .faq__summary {
    padding: 1.875rem 1.875rem 2.5rem 1.875rem;
  }
}

.faq__details[open] .faq__summary::after {
  content: "";
  position: absolute;
  left: 0.9375rem;
  right: 0.9375rem;
  bottom: 0;
  height: 1px;
  background-image: linear-gradient(to right, #999999 0, #999999 5px, transparent 5px, transparent 10px);
  background-size: 10px 1px;
  background-repeat: repeat-x;
}
@media screen and (min-width: 768px) {
  .faq__details[open] .faq__summary::after {
    left: 1.875rem;
    right: 1.875rem;
  }
}

.faq__question {
  flex: 1 1 0;
  min-width: 0;
  margin: 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.43;
  color: #222222;
}

.faq__mark {
  position: relative;
  flex-shrink: 0;
  width: 2.8125rem;
  height: 2.8125rem;
  background: #2498E8;
  border-radius: 50%;
}
@media screen and (min-width: 768px) {
  .faq__mark {
    width: 5rem;
    height: 5rem;
  }
}

.faq__mark-text {
  position: absolute;
  top: 50%;
  left: 50%;
  color: #FFFFFF;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .faq__mark-text {
    font-size: 3rem;
  }
}

.faq__mark--a {
  transform: translateY(0.0625rem);
}
@media screen and (min-width: 768px) {
  .faq__mark--a {
    transform: translateY(0rem);
  }
}

.faq__mark-text--q {
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 768px) {
  .faq__mark-text--q {
    transform: translate(calc(-50% - 1px), calc(-50% + 4px));
  }
}

.faq__mark-text--a {
  transform: translate(-50%, calc(-50% + 3px));
}
@media screen and (min-width: 768px) {
  .faq__mark-text--a {
    transform: translate(-50%, calc(-50% + 2px));
  }
}

.faq__icon {
  position: relative;
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
}
.faq__icon::before, .faq__icon::after {
  content: "";
  position: absolute;
  top: 76%;
  left: 54%;
  width: 1.25rem;
  height: 0.125rem;
  background: #222222;
  transition: transform 0.3s ease;
}
@media screen and (min-width: 768px) {
  .faq__icon::before, .faq__icon::after {
    top: 79%;
    width: 2.3125rem;
  }
}
.faq__icon::before {
  transform: translate(-50%, -50%);
}
.faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
@media screen and (min-width: 768px) {
  .faq__icon {
    width: 2.875rem;
    height: 2.875rem;
  }
  .faq__icon::before, .faq__icon::after {
    height: 0.1875rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .faq__icon::before, .faq__icon::after {
    transition: none;
  }
}

.faq__details[open] .faq__icon::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq__body {
  overflow: hidden;
  transition: height 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@media (prefers-reduced-motion: reduce) {
  .faq__body {
    transition: none;
  }
}

.faq__body-inner {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.875rem 0.875rem 1.875rem 0.875rem;
}
@media screen and (min-width: 768px) {
  .faq__body-inner {
    padding: 2.5rem 1.875rem 1.78125rem 1.875rem;
  }
}

.faq__answer {
  flex: 1 1 0;
  min-width: 0;
  margin: 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.46;
  color: #222222;
}

.column {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 3.125rem 0 3.5rem;
}
.column::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0.6875rem;
  background: #D4E2EA;
  z-index: -1;
  pointer-events: none;
}
.column::after {
  content: "";
  position: absolute;
  top: 0.625rem;
  right: 0;
  width: 100%;
  aspect-ratio: 375/637;
  background: url("../img/bg-deco-column-sp.svg") no-repeat right top/contain;
  pointer-events: none;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .column {
    padding: 5.5rem 0 8.5rem;
  }
  .column::before {
    height: 0rem;
  }
  .column::after {
    top: -0.375rem;
    aspect-ratio: 1440/1000;
    background-image: url("../img/bg-deco-column-pc.svg");
  }
}

.column__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.875rem;
  padding: 0rem 0.8125rem 0rem 0.8125rem;
}
@media screen and (min-width: 768px) {
  .column__inner {
    max-width: 81.1875rem;
    margin: 0 auto;
    gap: 2.875rem;
    padding: 0 2.8125rem;
  }
}
@media (min-width: 1200px) {
  .column__inner {
    padding: 0 3.125rem;
  }
}

.column__slider {
  position: relative;
  width: 100%;
  max-width: 25rem;
  margin: 0 auto;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .column__slider {
    max-width: 45.125rem;
    margin: 0 auto;
  }
}
@media (min-width: 1200px) {
  .column__slider {
    max-width: 68.375rem;
  }
}

.column__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.column__item {
  display: flex;
  justify-content: center;
  width: 100%;
}

.column__controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 18.75rem;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .column__controls {
    position: absolute;
    top: 52.5%;
    left: 50.5%;
    right: auto;
    width: 100%;
    max-width: 81.25rem;
    margin: 0;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1;
  }
}

.column__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.125rem;
  height: 3.125rem;
  padding: 0;
  background: transparent;
  border: none;
  color: #004EA2;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
@media (prefers-reduced-motion: reduce) {
  .column__nav {
    transition: none;
  }
}
.column__nav:focus-visible {
  outline: 2px solid #004EA2;
  outline-offset: 2px;
}
@media (hover: hover) and (pointer: fine) {
  .column__nav:hover {
    opacity: 0.6;
  }
}
@media screen and (min-width: 768px) {
  .column__nav {
    width: 5rem;
    height: 5rem;
    pointer-events: auto;
    transform: none;
  }
}

.column__nav-icon {
  width: 1.25rem;
  height: 2.125rem;
}
@media screen and (min-width: 768px) {
  .column__nav-icon {
    width: 1.875rem;
    height: 3.1875rem;
  }
}

.column__nav-icon--prev {
  transform: scaleX(-1);
}

.column__button-wrap {
  padding: 0 0.4375rem;
}
@media screen and (min-width: 768px) {
  .column__button-wrap {
    padding: 0;
    margin-top: 0.125rem;
  }
}

.column__button {
  margin: 0 auto;
}

.section-title--column {
  width: 9.6875rem;
  margin-left: 0.4375rem;
}
@media screen and (min-width: 768px) {
  .section-title--column {
    width: 12.4375rem;
    margin-left: 3.5625rem;
    gap: 1.5rem;
  }
  .section-title--column::after {
    margin-top: -0.125rem;
  }
}

.button__text--column {
  text-align: left;
  width: 14.0625rem;
}
@media screen and (min-width: 768px) {
  .button__text--column {
    text-align: center;
    width: 21.4375rem;
  }
}

.page-hero--works {
  position: relative;
  --title-w-sp: 16.8125rem;
  --title-en-ls-sp: 1.55px;
}

.page-hero--works .page-title__en {
  width: 100%;
}

.works-archive__filter {
  position: relative;
  width: auto;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-radius: 20px;
  margin-top: 2rem;
  margin-bottom: 2rem;
  margin-inline: auto;
  padding: 0.625rem;
  background-color: #FFFFFF;
}
@media screen and (min-width: 768px) {
  .works-archive__filter {
    flex-direction: row;
    align-items: center;
    width: 100%;
    max-width: 75rem;
    gap: 1rem;
    margin-top: 2.5rem;
    margin-bottom: 2.8125rem;
    padding-top: 1.3125rem;
    padding-bottom: 1.1875rem;
    padding-inline: 1.625rem;
  }
}

.works-archive__tabs-label {
  flex-shrink: 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: #333333;
  display: block;
  width: 17.125rem;
  height: 2.8125rem;
  text-align: center;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .works-archive__tabs-label {
    display: inline;
    width: auto;
    text-align: left;
    line-height: 1.8;
  }
}

.works-archive__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
@media screen and (min-width: 768px) {
  .works-archive__tabs {
    gap: 1rem;
    line-height: 1.4;
  }
}

.works-archive__tab {
  display: flex;
  min-width: 8.75rem;
  white-space: nowrap;
  padding: 0.6875rem 1.875rem 0.625rem 1.875rem;
  justify-content: center;
  align-items: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #2498E8;
  background: #FFFFFF;
  border: 2px solid #2498E8;
  border-radius: 20px;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}
@media (prefers-reduced-motion: reduce) {
  .works-archive__tab {
    transition: none;
  }
}
.works-archive__tab:focus-visible {
  outline: 2px solid #004EA2;
  outline-offset: 2px;
}
@media (hover: hover) and (pointer: fine) {
  .works-archive__tab:hover {
    background: #2498E8;
    color: #FFFFFF;
  }
}
@media screen and (min-width: 768px) {
  .works-archive__tab {
    height: 3.75rem;
    min-width: 10.625rem;
    padding: 0.8125rem 1.4375rem;
    font-size: 1.5rem;
  }
}

.works-archive__tab.is-active {
  background: #2498E8;
  color: #FFFFFF;
  text-decoration: underline;
  text-underline-offset: 0.2em;
  padding-top: 0.5rem;
  padding-bottom: 0.8125rem;
}

.works-archive__tab:nth-child(2) {
  padding-inline: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .works-archive__tab:nth-child(2) {
    padding: 0.8125rem 1.4375rem;
  }
}

@media (max-width: 499px) {
  .works-archive__filter {
    flex-direction: column;
    width: 100%;
    max-width: 100%;
  }
  .works-archive__tabs-label {
    width: auto;
    padding-left: 0;
  }
  .works-archive__tabs {
    display: grid;
    grid-template-columns: 8.75rem 8.75rem;
    width: 100%;
  }
  .works-archive__tab {
    min-width: 0;
    width: 8.75rem;
    height: 3.125rem;
    padding: 0.6875rem 0.9375rem 0.625rem 0.9375rem;
    font-size: 1.25rem;
  }
  .works-archive__tab:nth-child(3) {
    grid-column: 1/-1;
    justify-self: start;
    width: 12.5rem;
  }
}
@media (max-width: 374px) {
  .works-archive__tabs {
    grid-template-columns: 1fr 1fr;
  }
  .works-archive__tab,
  .works-archive__tab:nth-child(3) {
    width: auto;
  }
}
@media (min-width: 500px) and (max-width: 767px) {
  .works-archive__filter {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 100%;
  }
  .works-archive__tabs-label {
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 905px) {
  .works-archive__filter {
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
  }
}
@media screen and (min-width: 376px) and (max-width: 767px) {
  .works-archive .archive-container {
    max-width: 45rem;
  }
}

.works-archive__grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: start;
}
@media screen and (min-width: 376px) and (max-width: 767px) {
  .works-archive__grid {
    max-width: 25rem;
    margin-inline: auto;
  }
}
@media screen and (min-width: 768px) {
  .works-archive__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 1.875rem;
    max-width: 51.875rem;
    margin-inline: auto;
  }
}
@media screen and (min-width: 1127px) {
  .works-archive__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem 1.875rem;
    max-width: none;
  }
}

.works-archive__item {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-self: stretch;
  height: 100%;
}

.works-archive__item--sp-hidden {
  display: none;
}
@media screen and (min-width: 768px) {
  .works-archive__item--sp-hidden {
    display: flex;
  }
}

.card--works {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding-bottom: 1.25rem;
}

.card__body--works {
  display: flex;
  padding: 0 0.9375rem;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.3125rem;
  align-self: stretch;
  flex: 1;
  padding-top: 1.125rem;
}

.card--works .card__more {
  margin-top: auto;
}

@media screen and (min-width: 768px) {
  .card--works .card__title {
    width: 100%;
  }
  .card--works .card__title br {
    display: none;
  }
}
.works-archive__pager {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  max-width: 21.4375rem;
  width: 100%;
  margin-top: 2rem;
  height: 2.5rem;
  align-items: center;
  column-gap: 0.5rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .works-archive__pager {
    column-gap: 0;
    max-width: 56.75rem;
    height: auto;
    margin-top: 5rem;
  }
}

.works-archive__pager-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  color: #222222;
  font-weight: 500;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .works-archive__pager-link {
    font-size: 1.5rem;
    gap: 0.3125rem;
  }
}
.works-archive__pager-link:hover {
  opacity: 0.7;
}

.works-archive__pager-link span {
  display: none;
}
@media screen and (min-width: 768px) {
  .works-archive__pager-link span {
    display: block;
  }
}

.works-archive__pager-link--prev {
  grid-column: 1;
  justify-self: start;
}

.works-archive__pager-link--next {
  grid-column: 3;
  justify-self: end;
}

.works-archive__page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
  grid-column: 2;
  justify-self: center;
  min-width: 0;
}
@media screen and (max-width: 374px) {
  .works-archive__page-numbers {
    gap: 0.5rem;
  }
}
@media screen and (min-width: 768px) {
  .works-archive__page-numbers {
    gap: 1.875rem;
  }
}

@media (min-width: 375px) and (max-width: 767px) {
  .works-archive__page-numbers:has(.works-archive__page-ellipsis ~ .works-archive__page-ellipsis) {
    gap: 1rem;
  }
}
@media (max-width: 374px) {
  .works-archive__page-numbers:has(.works-archive__page-ellipsis ~ .works-archive__page-ellipsis) {
    gap: 0.25rem;
  }
}
@media screen and (min-width: 768px) {
  .works-archive__page-numbers--sp {
    display: none;
  }
}

.works-archive__page-numbers--pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .works-archive__page-numbers--pc {
    display: flex;
  }
}

.works-archive__page-number {
  display: flex;
  width: 2.5rem;
  height: 2.5rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: "Josefin Sans", sans-serif;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  color: #222222;
  text-decoration: none;
  border-radius: 0.625rem;
  transition: background 0.3s ease, color 0.3s ease;
}
@media (prefers-reduced-motion: reduce) {
  .works-archive__page-number {
    transition: none;
  }
}
.works-archive__page-number:focus-visible {
  outline: 2px solid #004EA2;
  outline-offset: 2px;
}
@media screen and (min-width: 768px) {
  .works-archive__page-number {
    width: 3.125rem;
    height: 3.125rem;
    font-size: 2rem;
    padding: 0.125rem 1.125rem 0.125rem 1.1875rem;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.625rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .works-archive__page-number:hover {
    background: linear-gradient(180deg, #004EA2 0%, #2498E8 100%);
    color: #FFFFFF;
  }
}

.works-archive__page-number--gray {
  width: 2.5rem;
  height: 2.5rem;
  padding: 0.125rem 1.125rem 0.125rem 1.1875rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  border-radius: 0.625rem;
  border: 1px solid #333333;
  background: #e5e5e5;
  color: #222222;
}
@media screen and (min-width: 768px) {
  .works-archive__page-number--gray {
    width: 3.125rem;
    height: 3.125rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .works-archive__page-number--gray:hover {
    background: #e5e5e5;
    color: #222222;
  }
}

.works-archive__page-number.is-active {
  width: 2.5rem;
  height: 2.5rem;
  padding: 0.125rem 1.125rem 0.125rem 1.1875rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  border-radius: 0.625rem;
  background: linear-gradient(180deg, #004EA2 0%, #2498E8 100%);
  color: #FFFFFF;
}
@media screen and (min-width: 768px) {
  .works-archive__page-number.is-active {
    width: 3.125rem;
    height: 3.125rem;
  }
}

.works-archive__page-ellipsis {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.375rem;
  height: 2.5rem;
  font-family: "Josefin Sans", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: #222222;
}
@media screen and (min-width: 768px) {
  .works-archive__page-ellipsis {
    height: 3.125rem;
  }
}

@media screen and (min-width: 768px) and (max-width: 999px) {
  .works-archive__page-numbers {
    gap: 0.5rem;
  }
  .works-archive__page-numbers:has(> li:nth-child(8)),
  .works-archive__page-numbers:has(.works-archive__page-ellipsis ~ .works-archive__page-ellipsis) {
    gap: 0.375rem;
  }
  .works-archive__page-number,
  .works-archive__page-number--gray,
  .works-archive__page-number.is-active {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.5rem;
  }
  .works-archive__page-ellipsis {
    height: 2.5rem;
  }
  .works-archive__pager-link {
    font-size: 1.125rem;
    white-space: nowrap;
  }
}
@media screen and (min-width: 1000px) {
  .works-archive__page-numbers:has(> li:nth-child(8)),
  .works-archive__page-numbers:has(.works-archive__page-ellipsis ~ .works-archive__page-ellipsis) {
    gap: 1rem;
  }
}
@media (max-width: 767px) {
  .page-hero--works.page-hero--single .breadcrumb__list {
    flex-wrap: wrap;
    row-gap: 0.125rem;
  }
  .page-hero--works.page-hero--single .breadcrumb__item:last-child {
    flex-basis: 100%;
  }
}
.works-single {
  padding: 2rem 1rem 2rem;
}
@media screen and (min-width: 768px) {
  .works-single {
    padding: 2rem 3.75rem 4rem;
  }
}

.works-single__inner {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 40rem;
  margin-inline: auto;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .works-single__inner {
    max-width: 73.125rem;
    margin-top: 2.5rem;
  }
}

.works-single__image-wrap {
  max-width: 40rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .works-single__image-wrap {
    max-width: 75rem;
  }
}

.works-single__image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 343/327;
  object-fit: cover;
  border-radius: 0.625rem;
}
@media screen and (min-width: 768px) {
  .works-single__image {
    aspect-ratio: 1200/900;
  }
}

.works-single__body {
  display: flex;
  flex-direction: column;
}

.works-single__body a {
  overflow-wrap: anywhere;
}

.works-single__date {
  font-size: 1.5rem;
  color: #444444;
  margin-top: 0.125rem;
}

.works-single__title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #222222;
  line-height: 1.45;
  margin-top: 0.1875rem;
}
@media screen and (min-width: 768px) {
  .works-single__title {
    margin-top: 0.125rem;
  }
}

@media screen and (min-width: 768px) {
  .works-single__title br {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .works-single__title-work {
    margin-left: 2.8125rem;
  }
}

.works-single__text {
  font-size: 1.5rem;
  color: #222222;
  line-height: 1.45;
  font-weight: 500;
  margin-top: 0.5rem;
}

.works-single__pager {
  display: flex;
  width: 100%;
  max-width: 13rem;
  margin-top: 1.875rem;
  height: 2.5rem;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .works-single__pager {
    max-width: 62.5rem;
    width: 100%;
    height: auto;
    padding-inline: 0rem;
    margin-top: 6.375rem;
  }
}

.works-single__pager-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  color: #222222;
  font-weight: 500;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .works-single__pager-link {
    font-size: 1.5rem;
    gap: 0.3125rem;
  }
}
.works-single__pager-link:hover {
  opacity: 0.7;
}

.works-single__pager-link span {
  display: none;
}
@media screen and (min-width: 768px) {
  .works-single__pager-link span {
    display: block;
  }
}

.works-single__pager-link--next {
  margin-left: auto;
}

.works-archive .screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.works-single__btn-wrap {
  display: flex;
  justify-content: center;
  margin-top: 1.6875rem;
}
@media screen and (min-width: 768px) {
  .works-single__btn-wrap {
    margin-top: 1.8125rem;
  }
}

.works-single__btn-wrap .button--primary {
  position: relative;
  width: 19.375rem;
  padding-inline: 1.25rem;
  padding-block: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .works-single__btn-wrap .button--primary {
    width: 28.125rem;
    height: 3.75rem;
    max-width: 28.125rem;
    padding: 0.9375rem 3.125rem;
  }
}

.works-single__btn-wrap .button--primary .button__arrow {
  position: absolute;
  top: 50%;
  right: 1.25rem;
  transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .works-single__btn-wrap .button--primary .button__arrow {
    right: 3.125rem;
  }
}

.button__text--works-single {
  font-size: 1.5rem;
}

.reason {
  background: #ecf7ff;
  padding-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .reason {
    padding-bottom: 2.5rem;
  }
}

@media (min-width: 1320px) {
  .reason__intro {
    display: flex;
    align-items: stretch;
    padding-top: 3.375rem;
    padding-inline: 2.5rem;
  }
}

.reason__intro-body {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding: 1.5625rem 1.3125rem 1.6875rem 1.1875rem;
}
@media (max-width: 374px) {
  .reason__intro-body {
    padding: 1.5625rem 0.625rem 1.6875rem 0.625rem;
  }
}
@media (min-width: 1320px) {
  .reason__intro-body {
    flex: 0 0 56%;
    gap: 3.5625rem;
    padding: 4.0625rem 3.125rem 8.125rem 0.5rem;
    background: linear-gradient(90deg, #e6f6ff 0%, #e6f6ff 83%, rgba(230, 246, 255, 0) 100%);
    position: relative;
    z-index: 1;
  }
}

.reason__lead {
  font-family: "Zen Antique Soft", serif;
  font-weight: 400;
  font-size: 3.375rem;
  line-height: 1.06;
  color: #333333;
  text-shadow: 0 0 0.55rem #e6f6ff;
}
@media (max-width: 374px) {
  .reason__lead {
    font-size: 2.75rem;
  }
}
@media screen and (min-width: 768px) {
  .reason__lead {
    font-size: 4rem;
    line-height: 1.15;
    text-shadow: 0 0 0.625rem #e6f6ff;
  }
}

.reason__lead-line {
  display: block;
}

.reason__lead-num {
  font-size: 6rem;
  color: #004EA2;
}
@media (max-width: 374px) {
  .reason__lead-num {
    font-size: 4.875rem;
  }
}

.reason__lead-unit {
  color: #004EA2;
}

.reason__lead-tail {
  display: block;
  margin-top: 1.375rem;
}
@media (min-width: 640px) {
  .reason__lead-tail {
    display: inline;
    margin-top: 0;
  }
}

.reason__desc {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.4;
  color: #000000;
}
@media screen and (min-width: 768px) {
  .reason__desc {
    font-size: 1.5rem;
  }
}

@media (min-width: 640px) {
  .reason__desc-br {
    display: none;
  }
}
@media (min-width: 1320px) {
  .reason__desc-br {
    display: block;
  }
}

@media (min-width: 1320px) {
  .reason__intro-visual {
    position: relative;
    z-index: 0;
    flex: 1 1 0;
    min-width: 0;
    align-self: stretch;
    margin-left: -15.125rem;
    padding: 0rem 0.25rem 1.75rem 0;
    box-sizing: border-box;
  }
  .reason__intro-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, #e6f6ff 0%, rgba(230, 246, 255, 0) 30%);
    pointer-events: none;
  }
}

@media (min-width: 1320px) {
  .reason__intro-visual picture {
    display: block;
    width: 100%;
    height: 100%;
  }
}

.reason__intro-img {
  display: block;
  width: 100%;
  max-width: 32.8125rem;
  height: auto;
  margin-inline: auto;
}
@media (min-width: 768px) and (max-width: 1319px) {
  .reason__intro-img {
    max-width: clamp(32.8125rem, 80vw, 62.5rem);
  }
}
@media (min-width: 1320px) {
  .reason__intro-img {
    max-width: none;
    margin-inline: 0;
    height: 100%;
    object-fit: cover;
    object-position: 30% center;
  }
}

.reason__list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 0 0.625rem;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .reason__list {
    gap: 2.5rem;
    max-width: 90rem;
    margin: 1.625rem auto 0;
    box-sizing: border-box;
    padding-right: 3.75rem;
    padding-left: 3.75rem;
  }
}

.reason-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  width: 100%;
  max-width: 32.8125rem;
  margin-inline: auto;
  background: #FFFFFF;
  border-radius: 1.25rem;
  padding: 1rem 1.25rem 2.125rem;
  box-shadow: 0 0 0.3125rem #333333;
}
@media screen and (min-width: 768px) {
  .reason-card {
    max-width: 75rem;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
    gap: 0.625rem;
    border-radius: 0.625rem;
    padding: 1.6875rem 3.125rem 1.875rem 3.125rem;
    box-shadow: 0 0.25rem 0.125rem rgba(51, 51, 51, 0.75);
  }
}

.reason-card__media {
  position: relative;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .reason-card__media {
    width: 21.875rem;
    flex-shrink: 0;
    margin-left: -2.5rem;
    z-index: 0;
  }
}
@media (min-width: 1000px) {
  .reason-card__media {
    width: 31.25rem;
    margin-left: -3.75rem;
  }
}

.reason-card__img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
@media screen and (min-width: 768px) {
  .reason-card__img {
    margin-top: 0.1875rem;
  }
}

.reason-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .reason-card__body {
    position: relative;
    z-index: 1;
    flex: 0 1 auto;
    min-width: 0;
    gap: 2.375rem;
    max-width: 37.5rem;
  }
}

.reason-card__head {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
@media (min-width: 1000px) {
  .reason-card__head {
    transform: translateY(0.75rem);
  }
}

.reason-card__num {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: #004EA2;
  color: #FFFFFF;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 2.25rem;
  line-height: 1;
}
@media (min-width: 1000px) {
  .reason-card__num {
    width: 6.25rem;
    height: 6.25rem;
    font-family: "Josefin Sans", sans-serif;
    font-size: 3rem;
    transform: translateY(0.125rem);
  }
}

.reason-card__title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.2;
  color: #333333;
}
@media screen and (min-width: 768px) {
  .reason-card__title {
    font-size: 2.25rem;
  }
}
@media (min-width: 1000px) {
  .reason-card__title {
    font-size: 3rem;
  }
}

.reason-card__title-accent {
  color: #004EA2;
}

.reason-card__text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 2.75rem;
  color: #000000;
}
@media screen and (min-width: 768px) {
  .reason-card__text {
    font-size: 1.5rem;
    line-height: 1.6;
  }
}
@media (min-width: 1000px) {
  .reason-card__text {
    font-size: 2rem;
    line-height: 1.42;
  }
}

.reason-card__badge {
  position: absolute;
  top: 50%;
  left: 48%;
  transform: translate(-50%, -50%);
  display: block;
  width: 106%;
  max-width: 20.625rem;
  height: auto;
}
@media screen and (min-width: 768px) {
  .reason-card__badge {
    width: 67%;
    left: 67%;
    max-width: 20.9375rem;
  }
}

.service-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.625rem;
  padding: 7.8125rem 1.125rem 1.75rem;
  background: #FFFFFF;
}
.service-menu__group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  width: 100%;
  max-width: 21.25rem;
}

.service-menu__group--materials {
  gap: 2.25rem;
}

.service-menu__title {
  width: 100%;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1;
  color: #333333;
  text-align: center;
}
.service-menu__title::after {
  content: "";
  display: block;
  width: 100%;
  height: 0.1875rem;
  margin-top: 0.5625rem;
  background: #333333;
}
@media (max-width: 374px) {
  .service-menu__title {
    font-size: 2rem;
  }
}

.service-menu__title--materials {
  width: 17.1875rem;
}

.service-menu__list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.service-menu__item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 17.1875rem;
  height: 2.3125rem;
  padding: 0.4375rem 0.625rem 0.625rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1;
  color: #FFFFFF;
  text-align: center;
  background: linear-gradient(82deg, #1880d2 0%, #004EA2 100%);
}

.service-menu__note {
  width: 17.1875rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.41;
  color: #000000;
  text-align: center;
  margin-top: -0.6875rem;
}
@media screen and (min-width: 768px) {
  .service-menu__note {
    line-height: 1.38;
  }
}

@media (min-width: 820px) and (max-width: 1179px) {
  .service-menu {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 2.625rem 3.125rem;
    padding: 7.5rem 2.5rem 5.9375rem;
  }
  .service-menu__group {
    width: 21.25rem;
    flex: none;
  }
}
@media (min-width: 1180px) {
  .service-menu {
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 5rem;
    padding: 13.375rem 2.5rem 2.5rem 3.4375rem;
  }
  .service-menu__group {
    width: 21.25rem;
    flex: none;
  }
  .service-menu__group--materials {
    gap: 2.5rem;
  }
}
.page-title--flow {
  width: 22.1875rem;
}
@media (max-width: 374px) {
  .page-title--flow {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .page-title--flow {
    width: fit-content;
  }
}
@media (min-width: 1330px) {
  .page-title--flow {
    width: 51.1875rem;
  }
}

.page-title__jp--flow {
  line-height: 1.3;
  margin: 0;
}
@media (max-width: 374px) {
  .page-title__jp--flow {
    font-size: 2rem;
  }
}
@media screen and (min-width: 768px) {
  .page-title__jp--flow {
    white-space: nowrap;
    font-size: clamp(2.6875rem, 1.75rem + 1.95vw, 3.375rem);
    line-height: 1;
    padding-bottom: 0.4375rem;
  }
}

@media screen and (min-width: 768px) {
  .page-title__br-flow {
    display: none;
  }
}

.flow-steps {
  padding: 1rem 1rem 2.0625rem;
  background: #FFFFFF;
}

.flow-steps__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .flow-steps__list {
    gap: 2.25rem;
  }
}

.flow-steps__item {
  width: 100%;
  max-width: 32.5rem;
}

.flow-step {
  display: flex;
  align-items: stretch;
  width: 100%;
  padding-right: 0.625rem;
  background: #FFFFFF;
  border-radius: 0 1.25rem 1.25rem 0;
  box-shadow: 0 0 2px rgba(51, 51, 51, 0.75);
  overflow: hidden;
}

.flow-step__num {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  width: 5.625rem;
  padding-left: 0.125rem;
  padding-right: 0.125rem;
  color: #FFFFFF;
  background: linear-gradient(120deg, #004EA2 0%, #004EA2 52%, #2498E8 100%);
  clip-path: polygon(0 0, 62% 0, 100% 50%, 62% 100%, 0 100%);
}

.flow-step__num-label {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1;
}

.flow-step__num-value {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 500;
  font-size: 3.75rem;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.flow-step__body {
  display: flex;
  align-items: center;
  flex: 1 0 0;
  min-width: 0;
}

.flow-step__text {
  flex: 1 0 0;
  min-width: 0;
  align-self: flex-start;
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  padding: 0.4375rem 1rem 0.625rem;
}
@media screen and (min-width: 768px) {
  .flow-step__text {
    gap: 0.3125rem;
    padding: 1.5rem 1.5rem 1.5rem;
  }
}

.flow-step__text--01 {
  padding: 0.4375rem 1rem 1rem;
  gap: 0.1875rem;
}
@media screen and (min-width: 768px) {
  .flow-step__text--01 {
    align-self: flex-start;
    gap: 0.3125rem;
    padding: 1.5rem 1.5rem 0.125rem;
  }
}

.flow-step__title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.4;
  color: #004EA2;
}

.flow-step__desc {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.459;
  color: #333333;
}

.flow-step__desc-br--pc {
  display: none;
}

@media (min-width: 1280px) {
  .flow-step__desc-br--pc {
    display: inline;
  }
}
.flow-step__hours {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-top: 0.5rem;
  padding: 0rem 0.25rem 0.125rem;
  border: 2px solid #004EA2;
  border-radius: 0.3125rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .flow-step__hours {
    margin-top: 0.75rem;
    padding: 0rem;
  }
}

.flow-step__hours-main {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  line-height: 2.1875rem;
  color: #004EA2;
}
@media screen and (min-width: 768px) {
  .flow-step__hours-main {
    font-size: 1.5rem;
    line-height: 1.75rem;
  }
}

.flow-step__hours-note {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  line-height: 2.1875rem;
  color: #333333;
}
@media screen and (min-width: 768px) {
  .flow-step__hours-note {
    font-size: 1.25rem;
    line-height: 1.625rem;
    margin-top: 0.625rem;
    margin-bottom: 0;
  }
}

.flow-step__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 4.375rem;
  height: 4.375rem;
  background: #FFFFFF;
  border: 0.3125rem solid #004EA2;
  border-radius: 50%;
}

@media (max-width: 374px) {
  .flow-step__icon {
    display: none;
  }
}
.flow-step__icon-img {
  object-fit: contain;
}

.flow-step__icon-img[src$="flow-icon-01.svg"] {
  width: 1.9140625rem;
  height: 1.9140625rem;
}
@media screen and (min-width: 768px) {
  .flow-step__icon-img[src$="flow-icon-01.svg"] {
    width: 5.32109375rem;
    height: 5.32109375rem;
  }
}

.flow-step__icon-img[src$="flow-icon-02.svg"] {
  width: 2.1875rem;
  height: 2.6875rem;
}
@media screen and (min-width: 768px) {
  .flow-step__icon-img[src$="flow-icon-02.svg"] {
    width: 5.1625rem;
    height: 6.3425rem;
  }
}

.flow-step__icon-img[src$="flow-icon-03.svg"] {
  width: 1.9140625rem;
  height: 1.9140625rem;
}
@media screen and (min-width: 768px) {
  .flow-step__icon-img[src$="flow-icon-03.svg"] {
    width: 5.32109375rem;
    height: 5.32109375rem;
  }
}

.flow-step__icon-img[src$="flow-icon-04.svg"] {
  width: 1.9140625rem;
  height: 1.9140625rem;
}
@media screen and (min-width: 768px) {
  .flow-step__icon-img[src$="flow-icon-04.svg"] {
    width: 5.32109375rem;
    height: 5.32109375rem;
  }
}

.flow-step__icon-img[src$="flow-icon-05.svg"] {
  width: 1.9140625rem;
  height: 1.640625rem;
}
@media screen and (min-width: 768px) {
  .flow-step__icon-img[src$="flow-icon-05.svg"] {
    width: 5.32109375rem;
    height: 4.5609375rem;
  }
}

.flow-step__icon-img[src$="flow-icon-06.svg"] {
  width: 2.8125rem;
  height: 2.3125rem;
}
@media screen and (min-width: 768px) {
  .flow-step__icon-img[src$="flow-icon-06.svg"] {
    width: 5.428125rem;
    height: 4.463125rem;
  }
}

.flow-step__icon-img[src$="flow-icon-07.svg"] {
  width: 1.9140625rem;
  height: 1.625rem;
}
@media screen and (min-width: 768px) {
  .flow-step__icon-img[src$="flow-icon-07.svg"] {
    width: 6.31640625rem;
    height: 5.3625rem;
  }
}

.flow-step__icon-img[src$="flow-icon-08.svg"] {
  width: 1.9375rem;
  height: 2.125rem;
}
@media screen and (min-width: 768px) {
  .flow-step__icon-img[src$="flow-icon-08.svg"] {
    width: 5.23125rem;
    height: 5.7375rem;
  }
}

.flow-step__icon-img[src$="flow-icon-09.svg"] {
  width: 1.9140625rem;
  height: 1.51875rem;
}
@media screen and (min-width: 768px) {
  .flow-step__icon-img[src$="flow-icon-09.svg"] {
    width: 5.8953125rem;
    height: 4.67775rem;
  }
}

@media screen and (min-width: 768px) {
  .flow-steps {
    padding: 3.625rem 2.5rem 2.8125rem 2.5rem;
  }
  .flow-steps__item {
    max-width: 75rem;
  }
  .flow-step {
    min-height: 14.25rem;
    padding-right: 1.25rem;
    box-shadow: 0 0 5px rgba(51, 51, 51, 0.5);
  }
  .flow-step--01 {
    min-height: 14.25rem;
  }
  .flow-step__num {
    width: 12.5rem;
    gap: 0.1875rem;
    padding-left: 1.5rem;
    padding-right: 1rem;
    padding-top: 1.1875rem;
  }
  .flow-step__num-label {
    font-size: 2rem;
  }
  .flow-step__num-value {
    font-size: 6rem;
  }
  .flow-step__title {
    font-size: 2.25rem;
  }
  .flow-step__desc {
    font-size: 1.25rem;
  }
  .flow-step__desc-line {
    display: block;
  }
  .flow-step__icon {
    width: 11.875rem;
    height: 11.875rem;
    border-width: 0.625rem;
  }
}
.faq--page {
  background: #ecf7ff;
  padding: 1.5rem 0 0.9375rem;
  border-radius: 1.25rem;
  margin-top: 9.25rem;
}
@media screen and (min-width: 768px) {
  .faq--page {
    margin-top: 11.375rem;
    margin-bottom: 0.3125rem;
    padding: 2.5rem 0;
    border-radius: 1.25rem 0 0 1.25rem;
  }
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .faq--page {
    margin-top: 5.625rem;
  }
}
.faq--page .faq__inner {
  padding: 0 1rem;
}
@media screen and (min-width: 768px) {
  .faq--page .faq__inner {
    max-width: 77.5rem;
    padding: 0 1.25rem;
  }
}

.faq--page .faq__list {
  gap: 1rem;
}
@media screen and (min-width: 768px) {
  .faq--page .faq__list {
    gap: 2.4375rem;
  }
}

.faq--page .faq__answer {
  line-height: 1.48;
}

.page-hero--news .page-title {
  width: fit-content;
}

.news-archive {
  padding-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .news-archive {
    padding-top: 2.5625rem;
  }
}

.news-archive__grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: start;
}
@media screen and (min-width: 768px) {
  .news-archive__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 1.875rem;
    max-width: 51.875rem;
    margin-inline: auto;
  }
}
@media screen and (min-width: 1127px) {
  .news-archive__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem 1.875rem;
    max-width: none;
  }
}

@media screen and (min-width: 376px) and (max-width: 767px) {
  .news-archive .archive-container {
    max-width: 27rem;
  }
}

.news-archive__item {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-self: stretch;
  height: 100%;
}

.card--news {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding-bottom: 1.25rem;
}

.card__body--news {
  display: flex;
  padding: 0 0.9375rem;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.3125rem;
  align-self: stretch;
  flex: 1;
  padding-top: 1.125rem;
}

.card--news .card__more {
  margin-top: auto;
}

.news-archive__pager {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  max-width: 21.4375rem;
  width: 100%;
  margin-top: 2rem;
  height: 2.5rem;
  align-items: center;
  column-gap: 0.5rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .news-archive__pager {
    max-width: 56.75rem;
    width: 100%;
    height: auto;
    column-gap: 0;
    margin-top: 5rem;
  }
}

.news-archive__pager-link--prev {
  grid-column: 1;
  justify-self: start;
}

.news-archive__pager-link--next {
  grid-column: 3;
  justify-self: end;
}

.news-archive__pager-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  color: #222222;
  font-weight: 500;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .news-archive__pager-link {
    font-size: 1.5rem;
    gap: 0.3125rem;
  }
}
.news-archive__pager-link:hover {
  opacity: 0.7;
}

.news-archive__pager-link span {
  display: none;
}
@media screen and (min-width: 768px) {
  .news-archive__pager-link span {
    display: block;
  }
}

.news-archive__page-numbers {
  display: flex;
  grid-column: 2;
  justify-self: center;
  min-width: 0;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 374px) {
  .news-archive__page-numbers {
    gap: 0.5rem;
  }
}
@media screen and (min-width: 768px) {
  .news-archive__page-numbers {
    gap: 1.875rem;
  }
}

@media (min-width: 375px) and (max-width: 767px) {
  .news-archive__page-numbers:has(.news-archive__page-ellipsis ~ .news-archive__page-ellipsis) {
    gap: 1rem;
  }
}
@media (max-width: 374px) {
  .news-archive__page-numbers:has(.news-archive__page-ellipsis ~ .news-archive__page-ellipsis) {
    gap: 0.25rem;
  }
}
@media screen and (min-width: 768px) {
  .news-archive__page-numbers--sp {
    display: none;
  }
}

.news-archive__page-numbers--pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .news-archive__page-numbers--pc {
    display: flex;
  }
}

.news-archive__page-number {
  display: flex;
  width: 2.5rem;
  height: 2.5rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: "Josefin Sans", sans-serif;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  color: #222222;
  text-decoration: none;
  border-radius: 0.625rem;
  transition: background 0.3s ease, color 0.3s ease;
}
@media (prefers-reduced-motion: reduce) {
  .news-archive__page-number {
    transition: none;
  }
}
.news-archive__page-number:focus-visible {
  outline: 2px solid #004EA2;
  outline-offset: 2px;
}
@media screen and (min-width: 768px) {
  .news-archive__page-number {
    width: 3.125rem;
    height: 3.125rem;
    font-size: 2rem;
    padding: 0.125rem 1.125rem 0.125rem 1.1875rem;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.625rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .news-archive__page-number:hover {
    background: linear-gradient(180deg, #004EA2 0%, #2498E8 100%);
    color: #FFFFFF;
  }
}

.news-archive__page-number--gray {
  width: 2.5rem;
  height: 2.5rem;
  padding: 0.125rem 1.125rem 0.125rem 1.1875rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  border-radius: 0.625rem;
  border: 1px solid #333333;
  background: #e5e5e5;
  color: #222222;
}
@media screen and (min-width: 768px) {
  .news-archive__page-number--gray {
    width: 3.125rem;
    height: 3.125rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .news-archive__page-number--gray:hover {
    background: #e5e5e5;
    color: #222222;
  }
}

.news-archive__page-number.is-active {
  width: 2.5rem;
  height: 2.5rem;
  padding: 0.125rem 1.125rem 0.125rem 1.1875rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  border-radius: 0.625rem;
  background: linear-gradient(180deg, #004EA2 0%, #2498E8 100%);
  color: #FFFFFF;
}
@media screen and (min-width: 768px) {
  .news-archive__page-number.is-active {
    width: 3.125rem;
    height: 3.125rem;
  }
}

.news-archive__page-ellipsis {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.375rem;
  height: 2.5rem;
  font-family: "Josefin Sans", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: #222222;
}
@media screen and (min-width: 768px) {
  .news-archive__page-ellipsis {
    height: 3.125rem;
  }
}

@media screen and (min-width: 768px) and (max-width: 999px) {
  .news-archive__page-numbers {
    gap: 0.5rem;
  }
  .news-archive__page-numbers:has(> li:nth-child(8)),
  .news-archive__page-numbers:has(.news-archive__page-ellipsis ~ .news-archive__page-ellipsis) {
    gap: 0.375rem;
  }
  .news-archive__page-number,
  .news-archive__page-number--gray,
  .news-archive__page-number.is-active {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.5rem;
  }
  .news-archive__page-ellipsis {
    height: 2.5rem;
  }
  .news-archive__pager-link {
    font-size: 1.125rem;
    white-space: nowrap;
  }
}
@media screen and (min-width: 1000px) {
  .news-archive__page-numbers:has(> li:nth-child(8)),
  .news-archive__page-numbers:has(.news-archive__page-ellipsis ~ .news-archive__page-ellipsis) {
    gap: 1rem;
  }
}
.news-single {
  padding: 2rem 1rem 2rem;
}
@media screen and (min-width: 768px) {
  .news-single {
    padding: 2.5rem 3.75rem 2.5rem;
  }
}

.news-single__inner {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 40rem;
  margin-inline: auto;
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .news-single__inner {
    max-width: 73.125rem;
    margin-top: 4.75rem;
  }
}

.news-single__image-wrap {
  max-width: 40rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .news-single__image-wrap {
    max-width: 75rem;
  }
}

.news-single__image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 343/327;
  object-fit: cover;
  border-radius: 0.625rem;
}
@media screen and (min-width: 768px) {
  .news-single__image {
    aspect-ratio: 1200/900;
  }
}

.news-single__body {
  display: flex;
  flex-direction: column;
}

.news-single__body a {
  overflow-wrap: anywhere;
}

.news-single__category {
  font-size: 1rem;
  font-weight: 500;
  color: #FFFFFF;
  line-height: 1.7;
  padding: 0.0625rem 1.25rem;
}

.news-single__date {
  font-size: 1.5rem;
  color: #444444;
}

.news-single__title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #222222;
  line-height: 1.4;
  margin-top: 0.1875rem;
}
@media screen and (min-width: 768px) {
  .news-single__title {
    margin-top: 0.25rem;
  }
}

.news-single__text {
  font-size: 1.5rem;
  color: #222222;
  line-height: 1.45;
  font-weight: 500;
  margin-top: 0.25rem;
}

.news-single__text a {
  color: #004EA2;
  text-decoration: underline;
}
@media (hover: hover) and (pointer: fine) {
  .news-single__text a:hover {
    opacity: 0.7;
  }
}

.news-single__pager {
  display: flex;
  width: 100%;
  max-width: 13rem;
  margin-top: 1.4375rem;
  height: 2.5rem;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .news-single__pager {
    max-width: 62.5rem;
    width: 100%;
    height: auto;
    padding-inline: 0rem;
    margin-top: 4.5rem;
  }
}

.news-single__pager-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  color: #222222;
  font-weight: 500;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .news-single__pager-link {
    font-size: 1.5rem;
    gap: 0.3125rem;
  }
}
.news-single__pager-link:hover {
  opacity: 0.7;
}

.news-single__pager-link span {
  display: none;
}
@media screen and (min-width: 768px) {
  .news-single__pager-link span {
    display: block;
  }
}

.news-single__pager-link--next {
  margin-left: auto;
}

.news-single__btn-wrap {
  display: flex;
  justify-content: center;
  margin-top: 1.6875rem;
}
@media screen and (min-width: 768px) {
  .news-single__btn-wrap {
    margin-top: 2.25rem;
  }
}

.news-single__btn-wrap .button--primary {
  position: relative;
  width: 19.375rem;
  padding-inline: 1.25rem;
  padding-block: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .news-single__btn-wrap .button--primary {
    width: 28.125rem;
    height: 3.75rem;
    max-width: 28.125rem;
    padding: 0.9375rem 3.125rem;
  }
}

.button__text--news-single {
  font-size: 1.5rem;
}

.news-single__btn-wrap .button__arrow {
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .news-single__btn-wrap .button__arrow {
    right: 3.125rem;
  }
}

.page-hero--column .page-title {
  width: fit-content;
}

.column-archive {
  padding-top: 0.875rem;
}
@media screen and (min-width: 768px) {
  .column-archive {
    padding-top: 2.5rem;
  }
}

.column-archive__grid {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: start;
}
@media screen and (min-width: 768px) {
  .column-archive__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 1.875rem;
    max-width: 51.875rem;
    margin-inline: auto;
  }
}
@media screen and (min-width: 1127px) {
  .column-archive__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem 1.875rem;
    max-width: none;
  }
}

@media screen and (min-width: 376px) and (max-width: 767px) {
  .column-archive .archive-container {
    max-width: 27rem;
  }
}

.column-archive__item {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.column-archive__item--sp-hidden {
  display: none;
}
@media screen and (min-width: 768px) {
  .column-archive__item--sp-hidden {
    display: flex;
  }
}

.card--column {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding-bottom: 3.125rem;
}

.card__body--column {
  display: flex;
  padding: 0 0.9375rem;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.3125rem;
  align-self: stretch;
  flex: 1;
  padding-top: 1.125rem;
}

.card--column .card__more {
  margin-top: auto;
}

.column-archive__pager {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  max-width: 21.4375rem;
  width: 100%;
  height: 2.5rem;
  margin-top: 2rem;
  margin-inline: auto;
  align-items: center;
  column-gap: 0.5rem;
}
@media screen and (min-width: 768px) {
  .column-archive__pager {
    max-width: 56.75rem;
    width: 100%;
    height: auto;
    column-gap: 0;
    margin-top: 5rem;
  }
}

.column-archive__pager-link--prev {
  grid-column: 1;
  justify-self: start;
}

.column-archive__pager-link--next {
  grid-column: 3;
  justify-self: end;
}

.column-archive__pager-link {
  display: flex;
  align-items: center;
  gap: 0.3125rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #222222;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
@media (prefers-reduced-motion: reduce) {
  .column-archive__pager-link {
    transition: none;
  }
}
.column-archive__pager-link:focus-visible {
  outline: 2px solid #004EA2;
  outline-offset: 2px;
}
@media screen and (min-width: 768px) {
  .column-archive__pager-link {
    font-size: 1.5rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .column-archive__pager-link:hover {
    opacity: 0.7;
  }
}

.column-archive__pager-link span {
  display: none;
}
@media screen and (min-width: 768px) {
  .column-archive__pager-link span {
    display: block;
  }
}

.column-archive__page-numbers {
  display: flex;
  grid-column: 2;
  justify-self: center;
  min-width: 0;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 374px) {
  .column-archive__page-numbers {
    gap: 0.5rem;
  }
}
@media screen and (min-width: 768px) {
  .column-archive__page-numbers {
    gap: 1.875rem;
  }
}

@media (min-width: 375px) and (max-width: 767px) {
  .column-archive__page-numbers:has(.column-archive__page-ellipsis ~ .column-archive__page-ellipsis) {
    gap: 1rem;
  }
}
@media (max-width: 374px) {
  .column-archive__page-numbers:has(.column-archive__page-ellipsis ~ .column-archive__page-ellipsis) {
    gap: 0.25rem;
  }
}
@media screen and (min-width: 768px) {
  .column-archive__page-numbers--sp {
    display: none;
  }
}

.column-archive__page-numbers--pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .column-archive__page-numbers--pc {
    display: flex;
  }
}

.column-archive__page-number {
  display: flex;
  width: 2.5rem;
  height: 2.5rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: "Josefin Sans", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: normal;
  color: #222222;
  text-decoration: none;
  border-radius: 0.625rem;
  transition: background 0.3s ease, color 0.3s ease;
}
@media (prefers-reduced-motion: reduce) {
  .column-archive__page-number {
    transition: none;
  }
}
.column-archive__page-number:focus-visible {
  outline: 2px solid #004EA2;
  outline-offset: 2px;
}
@media screen and (min-width: 768px) {
  .column-archive__page-number {
    width: 3.125rem;
    height: 3.125rem;
    font-size: 2rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .column-archive__page-number:hover {
    background: linear-gradient(180deg, #004EA2 0%, #2498E8 100%);
    color: #FFFFFF;
  }
}

.column-archive__page-number--gray {
  border: 1px solid #333333;
  background: #e5e5e5;
  color: #222222;
}
@media (hover: hover) and (pointer: fine) {
  .column-archive__page-number--gray:hover {
    background: #e5e5e5;
    color: #222222;
  }
}

.column-archive__page-number.is-active {
  background: linear-gradient(180deg, #004EA2 0%, #2498E8 100%);
  color: #FFFFFF;
}

.column-archive__page-ellipsis {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.375rem;
  height: 2.5rem;
  font-family: "Josefin Sans", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: #222222;
}
@media screen and (min-width: 768px) {
  .column-archive__page-ellipsis {
    height: 3.125rem;
  }
}

@media screen and (min-width: 768px) and (max-width: 999px) {
  .column-archive__page-numbers {
    gap: 0.5rem;
  }
  .column-archive__page-numbers:has(> li:nth-child(8)),
  .column-archive__page-numbers:has(.column-archive__page-ellipsis ~ .column-archive__page-ellipsis) {
    gap: 0.375rem;
  }
  .column-archive__page-number {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.5rem;
  }
  .column-archive__page-ellipsis {
    height: 2.5rem;
  }
  .column-archive__pager-link {
    font-size: 1.125rem;
    white-space: nowrap;
  }
}
@media screen and (min-width: 1000px) {
  .column-archive__page-numbers:has(> li:nth-child(8)),
  .column-archive__page-numbers:has(.column-archive__page-ellipsis ~ .column-archive__page-ellipsis) {
    gap: 1rem;
  }
}
.column-single {
  padding: 2rem 1rem 2rem;
}
@media screen and (min-width: 768px) {
  .column-single {
    padding: 2.5rem 3.75rem 2.5rem;
  }
}

.column-single__inner {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 40rem;
  margin-inline: auto;
  margin-top: 4.25rem;
}
@media screen and (min-width: 768px) {
  .column-single__inner {
    max-width: 73.125rem;
    margin-top: 3.4375rem;
  }
}

.column-single__image-wrap {
  max-width: 40rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .column-single__image-wrap {
    max-width: 75rem;
  }
}

.column-single__image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 343/327;
  object-fit: cover;
  border-radius: 10px;
}
@media screen and (min-width: 768px) {
  .column-single__image {
    aspect-ratio: 1200/900;
  }
}

.column-single__header {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media screen and (min-width: 768px) {
  .column-single__header {
    gap: 1rem;
  }
}

.column-single__date {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: #555555;
  line-height: 1;
}

.column-single__title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: #222222;
  line-height: 1.4;
  margin: 0;
}

.column-single__body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: #222222;
  line-height: 1.4;
  margin-top: 0.5rem;
}

.column-single__body p + p {
  margin-top: 1.5rem;
}

.column-single__body a {
  color: #004EA2;
  text-decoration: underline;
  overflow-wrap: anywhere;
}
@media (hover: hover) and (pointer: fine) {
  .column-single__body a:hover {
    opacity: 0.7;
  }
}

.column-single__pager {
  display: flex;
  width: 100%;
  max-width: 13rem;
  height: 2.5rem;
  margin-inline: auto;
  margin-top: 1.875rem;
  justify-content: space-between;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .column-single__pager {
    max-width: 62.5rem;
    height: auto;
    margin-top: 6.375rem;
  }
}

.column-single__pager-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #222222;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
@media (prefers-reduced-motion: reduce) {
  .column-single__pager-link {
    transition: none;
  }
}
.column-single__pager-link:focus-visible {
  outline: 2px solid #004EA2;
  outline-offset: 2px;
}
@media screen and (min-width: 768px) {
  .column-single__pager-link {
    font-size: 1.5rem;
    gap: 0.3125rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .column-single__pager-link:hover {
    opacity: 0.7;
  }
}

.column-single__pager-link span {
  display: none;
}
@media screen and (min-width: 768px) {
  .column-single__pager-link span {
    display: block;
  }
}

.column-single__pager-link--next {
  margin-left: auto;
}

.column-single__btn-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1.6875rem;
}
@media screen and (min-width: 768px) {
  .column-single__btn-wrap {
    margin-top: 2.25rem;
  }
}

.column-single__btn-wrap .button--primary {
  position: relative;
  width: 19.375rem;
  padding-inline: 1.25rem;
  padding-block: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .column-single__btn-wrap .button--primary {
    width: 28.125rem;
    max-width: 28.125rem;
    height: 3.75rem;
    padding: 0.9375rem 3.125rem;
  }
}

.column-single__btn-wrap .button--primary .button__arrow {
  position: absolute;
  top: 50%;
  right: 1.25rem;
  transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .column-single__btn-wrap .button--primary .button__arrow {
    right: 3.125rem;
  }
}

.button__text--column-single {
  font-size: 1.5rem;
}

.column-single__body .wp-block-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .column-single__body .wp-block-buttons {
    flex-direction: row;
    justify-content: center;
    gap: 1.875rem;
  }
}

.column-single__body .wp-block-button {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 28.375rem;
}

.column-single__body .btn-line {
  max-width: 19.5625rem;
}

.column-single__body .wp-block-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 3.125rem;
  padding: 0.75rem 1.25rem;
  border: none;
  border-radius: 0;
  background: #0253a7;
  color: #FFFFFF;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
@media (prefers-reduced-motion: reduce) {
  .column-single__body .wp-block-button__link {
    transition: none;
  }
}
.column-single__body .wp-block-button__link:focus-visible {
  outline: 2px solid #004EA2;
  outline-offset: 2px;
}
@media (hover: hover) and (pointer: fine) {
  .column-single__body .wp-block-button__link:hover {
    background: #013d7d;
  }
}
@media screen and (min-width: 768px) {
  .column-single__body .wp-block-button__link {
    min-height: 3.75rem;
  }
}

.column-single__body .btn-line .wp-block-button__link {
  border-radius: 1.25rem;
  font-size: 1.5rem;
  line-height: 1;
  background: linear-gradient(90deg, rgb(0, 195, 0) 7.54%, rgb(0, 108, 0) 22.32%, rgb(0, 108, 0) 52.19%, rgb(0, 108, 0) 82.06%, rgb(0, 195, 0) 111.93%);
}
@media (hover: hover) and (pointer: fine) {
  .column-single__body .btn-line .wp-block-button__link:hover {
    background: linear-gradient(90deg, rgb(0, 195, 0) 7.54%, rgb(0, 108, 0) 22.32%, rgb(0, 108, 0) 52.19%, rgb(0, 108, 0) 82.06%, rgb(0, 195, 0) 111.93%);
  }
}
@media screen and (min-width: 768px) {
  .column-single__body .btn-line .wp-block-button__link {
    min-height: 3.125rem;
  }
}

.column-single__body a[href^="tel:"] {
  white-space: nowrap;
}

.contact {
  display: flex;
  flex-direction: column;
  gap: 4.3125rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .contact {
    gap: 2.5rem;
  }
}

.contact__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .contact__inner {
    gap: 2.5rem;
  }
}

.contact__lead-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  width: 100%;
  max-width: 100%;
  align-self: flex-start;
  padding: 0 1.0625rem;
}
@media screen and (min-width: 768px) {
  .contact__lead-wrap {
    margin-top: 0;
    padding-left: 4.6875rem;
    padding-right: 1.5625rem;
    width: 44.5625rem;
    gap: 0.125rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1340px) {
  .contact__lead-wrap {
    width: 100%;
  }
}

.contact__lead {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.875rem;
  color: #000000;
  margin: 0;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .contact__lead {
    font-size: 1.5rem;
    line-height: 3.125rem;
  }
}

.contact__lead-note {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.875rem;
  color: #000000;
  margin: 0;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .contact__lead-note {
    font-size: 1.25rem;
    line-height: 3.125rem;
  }
}

.contact__lead-note-mark {
  color: red;
}

.contact__form-wrap {
  width: 100%;
  padding: 0 1rem;
}
@media (max-width: 374px) {
  .contact__form-wrap {
    padding: 0;
  }
}
@media screen and (min-width: 768px) {
  .contact__form-wrap {
    padding: 0 1.5625rem;
  }
}

.contact-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: 100%;
  min-width: 0;
  background: #ecf7ff;
  border-radius: 1.25rem 0 0 1.25rem;
  padding: 2.3125rem 0.6875rem 2rem 0.6875rem;
}
@media (max-width: 374px) {
  .contact-form {
    padding: 2rem 0.3125rem;
  }
}
@media screen and (min-width: 768px) {
  .contact-form {
    gap: 2.5rem;
    max-width: 80.625rem;
    margin: 0 auto;
    padding: 2.5rem 1.25rem;
  }
}

.contact-form__row {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  width: 100%;
  min-width: 0;
}
@media screen and (min-width: 768px) {
  .contact-form__row {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    max-width: 50rem;
    padding: 0 1.25rem;
  }
}

.contact-form__label {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #333333;
  line-height: 1;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .contact-form__label {
    width: 12.5rem;
  }
}

.contact-form__required {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: #c00;
}

.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
  min-width: 0;
}
@media screen and (min-width: 768px) {
  .contact-form__field {
    gap: 0.75rem;
    width: 28.125rem;
    flex-shrink: 1;
  }
}
@media (min-width: 920px) {
  .contact-form__field {
    width: 34.375rem;
  }
}

.contact-form__input,
.contact-form__select,
.contact-form__textarea {
  width: 100%;
  padding: 0 1.25rem;
  background: #FFFFFF;
  border: 1px solid #666;
  border-radius: 0.625rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #333333;
  -webkit-appearance: none;
  appearance: none;
}
.contact-form__input::placeholder,
.contact-form__select::placeholder,
.contact-form__textarea::placeholder {
  color: #666;
  font-weight: 500;
  opacity: 1;
}
.contact-form__input:focus-visible,
.contact-form__select:focus-visible,
.contact-form__textarea:focus-visible {
  outline: 2px solid #004EA2;
  outline-offset: 2px;
}

.contact-form__input,
.contact-form__select {
  height: 3.125rem;
}

.contact-form__select {
  cursor: pointer;
  padding-right: 2.8125rem;
  background-image: url("../img/icon-select-arrow.svg");
  background-repeat: no-repeat;
  background-position: right 1.25rem center;
  background-size: 0.875rem 1rem;
}

.contact-form__textarea {
  min-height: 15.625rem;
  padding: 1.125rem 0.375rem 1.25rem 1.25rem;
  line-height: 1.7;
  resize: vertical;
}
@media screen and (min-width: 768px) {
  .contact-form__textarea {
    padding: 1.125rem 1.25rem 1.25rem 1.25rem;
  }
}

.contact-form__error {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #c00;
  line-height: 1.4;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .contact-form__error {
    margin-top: 0.75rem;
  }
}

.contact-form__privacy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
  width: 100%;
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  .contact-form__privacy {
    margin-top: 0;
    padding: 0;
    gap: 0.5rem;
  }
}

.contact-form__privacy-lead {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #333333;
  line-height: 1.4;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .contact-form__privacy-lead {
    font-size: 1.5rem;
  }
}

.contact-form__privacy-link {
  color: inherit;
  text-decoration: underline;
}

.contact-form__checkbox-label {
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  cursor: pointer;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #333333;
  padding-left: 0.625rem;
}
@media screen and (min-width: 768px) {
  .contact-form__checkbox-label {
    font-size: 1.25rem;
  }
}

.contact-form__checkbox {
  appearance: none;
  -webkit-appearance: none;
  width: 1.875rem;
  height: 1.875rem;
  background: #FFFFFF;
  border: 1px solid #666;
  border-radius: 0.3125rem;
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
  margin: 0;
}
.contact-form__checkbox:checked::before {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #000000;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1;
}
.contact-form__checkbox:focus-visible {
  outline: 2px solid #004EA2;
  outline-offset: 2px;
}

.contact-form__submit {
  width: 18.8125rem;
  margin: 0 auto;
  align-self: center;
}
@media screen and (min-width: 768px) {
  .contact-form__submit {
    width: 28.125rem;
    margin: 0 auto;
  }
}

.button__text--contact {
  width: 100%;
}

.contact__form-wrap .snow-monkey-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  min-width: 0;
  background: #ecf7ff;
  border-radius: 1.25rem 0 0 1.25rem;
  padding: 2.3125rem 0.625rem 1.9375rem;
}
@media (max-width: 374px) {
  .contact__form-wrap .snow-monkey-form {
    padding: 2rem 0.3125rem;
  }
}
@media screen and (min-width: 768px) {
  .contact__form-wrap .snow-monkey-form {
    max-width: 80.625rem;
    margin: 0 auto;
    padding: 3.1875rem 1.25rem 2.5rem;
  }
}

.contact__form-wrap .smf-form {
  display: flex;
  flex-direction: column;
  gap: 1.3125rem;
  width: 100%;
  min-width: 0;
}
@media screen and (min-width: 768px) {
  .contact__form-wrap .smf-form {
    gap: 3.125rem;
  }
}

.contact__form-wrap .smf-item {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
  min-width: 0;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .contact__form-wrap .smf-item {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    max-width: 50rem;
    margin: 0 auto;
    padding: 0 1.25rem;
  }
}

.contact__form-wrap .smf-item__col--label {
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .contact__form-wrap .smf-item__col--label {
    width: 12.5rem;
  }
}

.contact__form-wrap .smf-item__label {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #333333;
  line-height: 1;
}

.contact__form-wrap .smf-item__label__text {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
}
.contact__form-wrap .smf-item__label__text::after {
  content: "※";
  content: "※"/"必須";
  font-size: 1.25rem;
  font-weight: 400;
  color: #c00;
}

.contact__form-wrap .smf-item__col--controls {
  width: 100%;
  min-width: 0;
  padding-left: 1.3125rem;
}

.contact__form-wrap .snow-monkey-form[data-screen=confirm] .smf-item--divider .smf-item__col--controls {
  padding-left: 0;
}

@media screen and (min-width: 768px) {
  .contact__form-wrap .smf-item:not(.smf-item--divider) .smf-item__col--controls {
    width: 28.125rem;
    flex-shrink: 1;
  }
}
@media (min-width: 920px) {
  .contact__form-wrap .smf-item:not(.smf-item--divider) .smf-item__col--controls {
    width: 34.375rem;
  }
}

.contact__form-wrap .smf-form .smf-text-control__control,
.contact__form-wrap .smf-form .smf-select-control__control,
.contact__form-wrap .smf-form .smf-textarea-control__control {
  width: 100%;
  max-width: 100%;
  padding: 0 1.25rem;
  background: #FFFFFF;
  border: 1px solid #666;
  border-radius: 0.625rem;
  box-shadow: none;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #333333;
  -webkit-appearance: none;
  appearance: none;
}
.contact__form-wrap .smf-form .smf-text-control__control::placeholder,
.contact__form-wrap .smf-form .smf-select-control__control::placeholder,
.contact__form-wrap .smf-form .smf-textarea-control__control::placeholder {
  color: #666;
  font-weight: 500;
  opacity: 1;
}
.contact__form-wrap .smf-form .smf-text-control__control:focus-visible,
.contact__form-wrap .smf-form .smf-select-control__control:focus-visible,
.contact__form-wrap .smf-form .smf-textarea-control__control:focus-visible {
  outline: 2px solid #004EA2;
  outline-offset: 2px;
}

.contact__form-wrap .smf-form .smf-text-control__control,
.contact__form-wrap .smf-form .smf-select-control__control {
  height: 3.125rem;
}

.contact__form-wrap .smf-form .smf-select-control {
  display: block;
  width: 100%;
}

.contact__form-wrap .smf-form .smf-select-control__toggle {
  display: none;
}

.contact__form-wrap .smf-form .smf-select-control__control {
  cursor: pointer;
  padding-right: 2.8125rem;
  background-image: url("../img/icon-select-arrow.svg");
  background-repeat: no-repeat;
  background-position: right 1.25rem center;
  background-size: 0.875rem 1rem;
}

.contact__form-wrap .smf-form .smf-textarea-control__control {
  height: auto;
  min-height: 15.625rem;
  padding: 1.125rem 0.375rem 1.25rem 1.25rem;
  line-height: 1.7;
  resize: vertical;
}
@media screen and (min-width: 768px) {
  .contact__form-wrap .smf-form .smf-textarea-control__control {
    padding: 1.125rem 1.25rem 1.25rem 1.25rem;
  }
}

.contact__form-wrap .smf-error-messages {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #c00;
  line-height: 1.4;
  margin: 0.5rem 0 0;
}
@media screen and (min-width: 768px) {
  .contact__form-wrap .smf-error-messages {
    margin-top: 0.75rem;
  }
}

@media screen and (min-width: 768px) {
  .contact__form-wrap .smf-item--divider .smf-error-messages {
    margin-top: 0.1875rem;
  }
}

.contact__form-wrap .smf-form [data-invalid="1"] {
  border-color: #c00;
}

.contact__form-wrap .contact-form__privacy-lead {
  margin-top: 0;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .contact__form-wrap .contact-form__privacy-lead {
    padding-left: 0;
    margin-top: -0.25rem;
    line-height: 1.1;
  }
}

.contact__form-wrap .contact-form__privacy-lead a {
  color: inherit;
  text-decoration: underline;
}

.contact__form-wrap .smf-item--divider {
  margin-top: -0.4375rem;
  padding-right: 0;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .contact__form-wrap .smf-item--divider {
    margin-top: -2rem;
    padding: 0;
  }
}

.contact__form-wrap .smf-form .smf-checkbox-control {
  align-items: flex-start;
  justify-content: center;
  gap: 1.25rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  padding-left: 0.625rem;
}
@media screen and (min-width: 768px) {
  .contact__form-wrap .smf-form .smf-checkbox-control {
    padding-left: 0;
    margin-top: -0.5625rem;
  }
}

.contact__form-wrap .smf-form .smf-checkbox-control__control {
  width: 1.875rem;
  height: 1.875rem;
  margin: 0;
  background: #FFFFFF;
  border: 1px solid #666;
  border-radius: 0.3125rem;
  box-shadow: none;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
}
.contact__form-wrap .smf-form .smf-checkbox-control__control:focus-visible {
  outline: 2px solid #004EA2;
  outline-offset: 2px;
}
.contact__form-wrap .smf-form .smf-checkbox-control__control:checked {
  background-color: #FFFFFF;
  border-color: #666;
}
.contact__form-wrap .smf-form .smf-checkbox-control__control:checked::before {
  content: "✓";
  border: none;
  width: auto;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #000000;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1;
}

.contact__form-wrap .smf-form .smf-checkbox-control__label {
  font-size: 1rem;
  font-weight: 400;
  color: #333333;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .contact__form-wrap .smf-form .smf-checkbox-control__label {
    font-size: 1.25rem;
  }
}

.contact-form__checkbox-text {
  align-self: flex-start;
  line-height: 1.4;
}

.contact__form-wrap .smf-action {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 2.5rem;
  width: 100%;
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .contact__form-wrap .smf-action {
    margin-top: 2.0625rem;
  }
}

.contact__form-wrap .smf-action .smf-button-control {
  width: 100%;
  max-width: 18.8125rem;
}
@media screen and (min-width: 768px) {
  .contact__form-wrap .smf-action .smf-button-control {
    max-width: 28.125rem;
  }
}

.contact__form-wrap .smf-action .smf-button-control__control {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 4.0625rem;
  padding: 0.625rem 3.125rem;
  background: #004EA2;
  border: 1px solid transparent;
  border-radius: 40px;
  color: #FFFFFF;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
@media (prefers-reduced-motion: reduce) {
  .contact__form-wrap .smf-action .smf-button-control__control {
    transition: none;
  }
}
.contact__form-wrap .smf-action .smf-button-control__control:focus-visible {
  outline: 2px solid #004EA2;
  outline-offset: 2px;
}
@media screen and (min-width: 768px) {
  .contact__form-wrap .smf-action .smf-button-control__control {
    width: 28.125rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .contact__form-wrap .smf-action .smf-button-control__control:hover {
    background: #FFFFFF;
    color: #004EA2;
    border-color: #004EA2;
  }
}
.contact__form-wrap .smf-action .smf-button-control__control[disabled] {
  opacity: 0.6;
  cursor: default;
}
.contact__form-wrap .smf-action .smf-button-control__control::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 3.125rem;
  width: 0.5rem;
  height: 0.5rem;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}

.contact__form-wrap .smf-action .smf-button-control__control[data-action=complete],
.contact__form-wrap .smf-action .smf-button-control__control[data-action=back] {
  width: 100%;
  max-width: 28.125rem;
  padding: 0.625rem 1.875rem;
}
@media screen and (min-width: 768px) {
  .contact__form-wrap .smf-action .smf-button-control__control[data-action=complete],
  .contact__form-wrap .smf-action .smf-button-control__control[data-action=back] {
    width: 28.125rem;
    padding: 0.625rem 3.125rem;
  }
}
.contact__form-wrap .smf-action .smf-button-control__control[data-action=complete]::after,
.contact__form-wrap .smf-action .smf-button-control__control[data-action=back]::after {
  right: 1.875rem;
}
@media screen and (min-width: 768px) {
  .contact__form-wrap .smf-action .smf-button-control__control[data-action=complete]::after,
  .contact__form-wrap .smf-action .smf-button-control__control[data-action=back]::after {
    right: 3.125rem;
  }
}

.contact__form-wrap .smf-action .smf-button-control__control[data-action=back] {
  background: #FFFFFF;
  color: #004EA2;
  border: 2px solid #004EA2;
}
@media (hover: hover) and (pointer: fine) {
  .contact__form-wrap .smf-action .smf-button-control__control[data-action=back]:hover {
    background: #004EA2;
    color: #FFFFFF;
  }
}
.contact__form-wrap .smf-action .smf-button-control__control[data-action=back]::after {
  content: none;
}
.contact__form-wrap .smf-action .smf-button-control__control[data-action=back]::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 1.875rem;
  width: 0.5rem;
  height: 0.5rem;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: translateY(-50%) rotate(-135deg);
}
@media screen and (min-width: 768px) {
  .contact__form-wrap .smf-action .smf-button-control__control[data-action=back]::before {
    left: 3.125rem;
  }
}

.contact__form-wrap .snow-monkey-form[data-screen=confirm] .smf-form {
  gap: 2rem;
}
@media screen and (min-width: 768px) {
  .contact__form-wrap .snow-monkey-form[data-screen=confirm] .smf-form {
    gap: 4.8125rem;
  }
}

.contact__form-wrap .snow-monkey-form[data-screen=confirm] .smf-action {
  margin-top: 3.5rem;
}
@media screen and (min-width: 768px) {
  .contact__form-wrap .snow-monkey-form[data-screen=confirm] .smf-action {
    margin-top: 2.8125rem;
  }
}

.contact__form-wrap .snow-monkey-form[data-screen=confirm] .smf-action .smf-button-control {
  width: 100%;
  max-width: 20.1875rem;
  margin-left: 0;
}
@media screen and (min-width: 768px) {
  .contact__form-wrap .snow-monkey-form[data-screen=confirm] .smf-action .smf-button-control {
    max-width: 28.125rem;
  }
}

.contact__form-wrap .snow-monkey-form[data-screen=confirm] .smf-item {
  gap: 1.625rem;
}
@media screen and (min-width: 768px) {
  .contact__form-wrap .snow-monkey-form[data-screen=confirm] .smf-item {
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    padding: 0 1.25rem;
  }
}

@media screen and (min-width: 768px) {
  .contact__form-wrap .snow-monkey-form[data-screen=confirm] .smf-item__col--label {
    width: 13.125rem;
    padding-top: 0;
  }
}

@media screen and (min-width: 768px) {
  .contact__form-wrap .snow-monkey-form[data-screen=confirm] .smf-item:not(.smf-item--divider) .smf-item__col--controls {
    width: auto;
    flex: 1 1 0;
    min-width: 0;
  }
}

.contact__form-wrap .snow-monkey-form[data-screen=confirm] .smf-item__controls {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #333333;
  line-height: 1.7;
}

.contact__form-wrap .snow-monkey-form[data-screen=confirm] .contact-form__privacy-lead {
  margin-top: 0.9375rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .contact__form-wrap .snow-monkey-form[data-screen=confirm] .contact-form__privacy-lead {
    margin-top: 0;
    padding-left: 0;
  }
}

.contact__form-wrap .snow-monkey-form[data-screen=confirm] .smf-item--divider {
  margin-top: -0.375rem;
}
@media screen and (min-width: 768px) {
  .contact__form-wrap .snow-monkey-form[data-screen=confirm] .smf-item--divider {
    margin-top: -3.4375rem;
    padding: 0;
  }
}

.contact__form-wrap .snow-monkey-form[data-screen=confirm] .smf-item--divider .smf-item__controls {
  font-weight: 400;
  text-align: center;
  margin-top: -1.125rem;
}
@media screen and (min-width: 768px) {
  .contact__form-wrap .snow-monkey-form[data-screen=confirm] .smf-item--divider .smf-item__controls {
    font-size: 1.25rem;
  }
}

.other-contact {
  display: flex;
  flex-direction: column;
  padding: 2rem 0 0;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .other-contact {
    padding: 3.9375rem 0 0;
  }
}

.page-title--other-contact {
  gap: 0.375rem;
  width: 12.5rem;
}
@media screen and (min-width: 768px) {
  .page-title--other-contact {
    gap: 1rem;
    width: auto;
  }
}

@media screen and (min-width: 768px) {
  .page-title--other-contact::after {
    width: 14.1875rem;
  }
}

.page-title__jp--other-contact {
  line-height: 1.46;
  padding: 0;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .page-title__jp--other-contact {
    line-height: 1;
    margin-bottom: 0.5rem;
  }
}

.page-title__en--other-contact {
  padding: 0;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .page-title__en--other-contact {
    font-size: 1rem;
  }
}
@media screen and (min-width: 768px) {
  .page-title__en--other-contact {
    margin-bottom: 0.125rem;
  }
}

@media screen and (min-width: 768px) {
  .page-title__jp--other-contact br {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .other-contact__inner-wrap {
    padding: 0 1.25rem;
  }
}

.other-contact__inner {
  background: #ecf7ff;
  padding: 1.9375rem 0.9375rem 1.875rem;
  display: flex;
  flex-direction: column;
  gap: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .other-contact__inner {
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
    gap: 2.75rem;
    max-width: 80.625rem;
    margin: 0 auto;
    padding: 4.375rem 1.25rem 4.25rem;
  }
}

.other-contact__block {
  background: #FFFFFF;
  border-radius: 1.25rem;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
@media screen and (min-width: 768px) {
  .other-contact__block {
    width: 31.25rem;
    min-width: 0;
    padding: 1.25rem;
    gap: 1.5625rem;
  }
}

@media screen and (min-width: 768px) {
  .other-contact__block--line {
    gap: 1.625rem;
  }
}

.other-contact__icon {
  display: block;
  flex-shrink: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.other-contact__icon--line {
  width: 6.25rem;
  height: 6.25rem;
  background-image: url("../img/icon-line.svg");
}
@media screen and (min-width: 768px) {
  .other-contact__icon--line {
    margin-bottom: -1.375rem;
  }
}

.other-contact__icon--phone {
  width: 5rem;
  height: 5rem;
  background-image: url("../img/icon-phone.svg");
}

.other-contact__heading {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #333333;
  line-height: 3.125rem;
  text-align: center;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .other-contact__heading {
    font-size: 2rem;
  }
}
@media (min-width: 768px) and (max-width: 999px) {
  .other-contact__heading {
    font-size: 1.5rem;
  }
}

.other-contact__desc {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: #333333;
  line-height: 1.45;
  text-align: center;
  margin: 0;
}

.other-contact__tel-link {
  display: block;
  text-decoration: none;
  color: #004EA2;
  text-align: center;
  line-height: 3.125rem;
  margin-top: 0.0625rem;
}

.other-contact__tel-label {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
}
@media (max-width: 374px) {
  .other-contact__tel-label {
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 768px) {
  .other-contact__tel-label {
    font-size: 2rem;
  }
}
@media (min-width: 768px) and (max-width: 999px) {
  .other-contact__tel-label {
    font-size: 1.25rem;
  }
}

.other-contact__tel-number {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 400;
  font-size: 2.25rem;
}
@media (max-width: 374px) {
  .other-contact__tel-number {
    font-size: 1.875rem;
  }
}
@media screen and (min-width: 768px) {
  .other-contact__tel-number {
    font-size: 2.5rem;
  }
}
@media (min-width: 768px) and (max-width: 999px) {
  .other-contact__tel-number {
    font-size: 1.875rem;
  }
}

.other-contact__hours {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #333333;
  line-height: 1.45;
  text-align: center;
  margin-top: -0.3125rem;
}
@media screen and (min-width: 768px) {
  .other-contact__hours {
    font-size: 1.25rem;
  }
}

.other-contact__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 19.5625rem;
  min-height: 3.125rem;
  border-radius: 1.25rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: #FFFFFF;
  text-decoration: none;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .other-contact__button {
    max-width: none;
  }
}

.other-contact__button--line {
  background: linear-gradient(90deg, rgb(0, 195, 0) 7.54%, rgb(0, 108, 0) 22.32%, rgb(0, 108, 0) 52.19%, rgb(0, 108, 0) 82.06%, rgb(0, 195, 0) 111.93%);
}

.other-contact__button--tel {
  background: #004EA2;
}
@media screen and (min-width: 768px) {
  .other-contact__button--tel {
    display: none;
  }
}

.thanks {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.thanks__inner {
  padding: 4.375rem 1rem 0rem;
  gap: 2.5rem;
}
@media screen and (min-width: 768px) {
  .thanks__inner {
    padding-top: 2.5rem;
    gap: 2.5rem;
  }
}

.thanks__inner .contact__lead-wrap {
  padding-left: 0;
  padding-right: 0;
}
@media screen and (min-width: 768px) {
  .thanks__inner .contact__lead-wrap {
    padding-left: 3.6875rem;
  }
}

@media screen and (min-width: 768px) {
  .thanks .page-hero--contact::after {
    right: 2.5rem;
  }
}

.thanks__box {
  width: 100%;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4.4375rem;
  background: #ecf7ff;
  border-radius: 1.25rem 0 0 1.25rem;
  padding: 3.3125rem 0.625rem 1.1875rem 0.625rem;
}
@media (max-width: 374px) {
  .thanks__box {
    padding: 3.3125rem 0.625rem 1.25rem;
  }
}
@media screen and (min-width: 768px) {
  .thanks__box {
    max-width: 80.625rem;
    margin: 0 auto 6.875rem;
    gap: 2.9375rem;
    padding: 6.6875rem 1.875rem 6.25rem;
  }
}

.thanks__message {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.875rem;
  color: #000000;
  margin: 0;
  text-align: left;
}

.thanks__button {
  width: 19.375rem;
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .thanks__button {
    width: 28.125rem;
  }
}

.button__text--thanks {
  width: 100%;
}

.privacy {
  padding: 2rem 1rem 3.75rem;
}
@media screen and (min-width: 768px) {
  .privacy {
    padding: 2.5rem 2.5rem 6.25rem;
  }
}

.privacy__inner {
  max-width: 50rem;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.privacy__lead {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.8;
  color: #222222;
  margin: 0;
}

.privacy__heading {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
  color: #222222;
  margin: 1rem 0 0;
}
@media screen and (min-width: 768px) {
  .privacy__heading {
    font-size: 1.5rem;
  }
}

.privacy__text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.8;
  color: #222222;
  margin: 0;
}

.privacy__list {
  list-style: disc;
  margin: 0;
  padding-left: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.8;
  color: #222222;
}

.privacy__address {
  font-style: normal;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.8;
  color: #222222;
}

.privacy__address p {
  margin: 0;
}

.privacy__link {
  color: #004EA2;
  text-decoration: underline;
}
.privacy__link:focus-visible {
  outline: 2px solid #004EA2;
  outline-offset: 2px;
}
@media (hover: hover) and (pointer: fine) {
  .privacy__link:hover {
    opacity: 0.7;
  }
}

.error404 {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 0.8125rem 1rem 1.8125rem;
}
@media screen and (min-width: 768px) {
  .error404 {
    gap: 2.5rem;
    width: 100%;
    max-width: 80rem;
    margin-inline: auto;
    padding: 3.5rem 2.5rem 9.375rem;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
  }
}

.error404__body {
  display: flex;
  flex-direction: column;
  gap: 1.375rem;
}
@media screen and (min-width: 768px) {
  .error404__body {
    gap: 1rem;
    max-width: 71.3125rem;
  }
}

.error404__title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #222222;
  line-height: 1.45;
}
@media screen and (min-width: 768px) {
  .error404__title {
    font-size: 3.375rem;
    padding-left: 0.3125rem;
  }
}

.error404__text {
  font-size: 1.25rem;
  font-weight: 700;
  color: #222222;
  line-height: 1.6;
  letter-spacing: 0.1em;
  padding-bottom: 2.125rem;
  border-bottom: 2px solid #222222;
}
@media screen and (min-width: 768px) {
  .error404__text {
    font-size: 1.5rem;
    line-height: 1.667;
    padding-bottom: 1.1875rem;
    padding-left: 0.3125rem;
  }
}

.error404__btn-wrap {
  display: flex;
  justify-content: center;
}

.button--404 {
  position: relative;
  width: 100%;
  padding-inline: 1.75rem;
}
@media screen and (min-width: 768px) {
  .button--404 {
    width: 28.125rem;
  }
}

.button__text--404 {
  max-width: 16.625rem;
  width: 100%;
  font-size: 1.5rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .button__text--404 {
    max-width: 21.4375rem;
  }
}
