@charset "UTF-8";
/* リキッドレイアウト対応 */
body {
  font-family: "Noto Sans JP", sans-serif;
  color: #252D3E;
}

.pc {
  display: none;
}
@media (min-width: 787px) {
  .pc {
    display: block;
  }
}

@media (min-width: 787px) {
  .sp {
    display: none;
  }
}

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

@media (max-width: 787px) {
  html {
    font-size: 4.1025641026vw;
  }
}
@media (min-width: 787px) {
  html {
    font-size: 1.28vw;
  }
}
@media (min-width: 1250px) {
  html {
    font-size: 16px;
  }
}

/* pcの電話番号発信対応 */
/* ホバー */
a {
  text-decoration: none;
  color: inherit;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

.access {
  padding-block: 6.25rem;
  background: url(../img/webp/bg-lightblue-glow-sp.webp) no-repeat top right/cover;
}
@media (min-width: 787px) {
  .access {
    background: url(../img/webp/bg-lightblue-glow.webp) no-repeat top right/cover;
  }
}
.access .section__title-wrap {
  position: relative;
}
.access .section__title-wrap::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2.5rem;
  width: 100%;
  height: 1px;
  background: -webkit-gradient(linear, left top, right top, from(#004098), to(#3990FF));
  background: linear-gradient(to right, #004098, #3990FF);
}
.access .address {
  font-weight: 500;
  font-style: normal;
  font-size: 0.9375rem;
  line-height: 1.6;
  font-weight: 500;
  letter-spacing: 0.02em;
}
@media (min-width: 787px) {
  .access .address {
    letter-spacing: 0.05em;
  }
}
.access .address-map {
  position: relative;
  margin-top: 0.3125rem;
  font-size: 0.8125rem;
  font-weight: 500;
  font-family: "Work Sans", sans-serif;
  border: 0.125rem solid #252D3E;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: initial;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.access .address-map::after {
  content: "";
  display: block;
  width: 0.625rem;
  height: 0.6875rem;
  aspect-ratio: 1;
  background-image: url(../img/svg/link-icon-black.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  -webkit-transition: background-image 0.3s ease;
  transition: background-image 0.3s ease;
}
@media (any-hover: hover) {
  .access .address-map:hover {
    background-color: #252D3E;
    color: #FFF;
  }
  .access .address-map:hover::after {
    background-image: url(../img/svg/link-icon-white.svg);
  }
}
.access .access__title {
  background: linear-gradient(135deg, #004098 0%, #3990FF 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}

.access__inner {
  width: 21.375rem;
  max-width: 100%;
  margin-inline: auto;
}
@media (min-width: 787px) {
  .access__inner {
    width: 60rem;
  }
}

.access__iframe {
  width: 33.1875rem;
  height: 20rem;
  max-width: 100%;
  margin-inline: auto;
}
@media (min-width: 787px) {
  .access__iframe {
    overflow: hidden;
  }
}
.access__iframe iframe {
  width: 100%;
  height: 100%;
}
@media (min-width: 787px) {
  .access__iframe iframe {
    width: 100%;
    height: 125%;
    position: relative;
  }
}

.access__content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 5.5rem;
}
@media (min-width: 787px) {
  .access__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 5rem;
    margin-top: 5.5rem;
  }
}

.access__info {
  width: 21.8125rem;
  max-width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.5rem;
}

.access__info-head {
  font-size: 1.25rem;
  line-height: 1.28;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #252D3E;
}
@media (min-width: 787px) {
  .access__info-head {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1;
  }
}

.info-list {
  margin-top: 1rem;
}

.info-list__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1rem;
  line-height: 1.8;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.access__map {
  margin-top: 2.5rem;
}
@media (min-width: 787px) {
  .access__map {
    margin-top: initial;
  }
}

.info-list__item-title {
  width: 6rem;
  max-width: 100%;
}

.info-list__item-text {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.after-follow {
  padding-block: 8.4375rem 15.4375rem;
  overflow: hidden;
}
@media (min-width: 787px) {
  .after-follow {
    padding-block: 8.4375rem 5rem;
  }
}

.after-follow__inner {
  width: 100%;
  max-width: 100%;
  margin-inline: auto;
}
@media (min-width: 787px) {
  .after-follow__inner {
    width: 70rem;
  }
}

.after-follow__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[1];
  grid-template-columns: repeat(1, 1fr);
  gap: 1rem;
  margin-top: 4.75rem;
  padding-inline: 1.5rem;
}
@media (min-width: 787px) {
  .after-follow__items {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    padding-inline: initial;
  }
}

.after-follow__item {
  background: url(../img/webp/after-follow-item-bg-sp.webp) no-repeat center center/cover;
  padding: 1.5rem 1.125rem 1.5rem 1.5rem;
  border-radius: 0.25rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 1rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
}
@media (min-width: 787px) {
  .after-follow__item {
    background: url(../img/webp/after-follow-item-bg-pc.webp) no-repeat center center/cover;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 2rem;
    padding: 1.5rem;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    position: initial;
  }
}
.after-follow__item:nth-child(2) .after-follow__item-title {
  letter-spacing: initial;
}
@media (min-width: 787px) {
  .after-follow__item:nth-child(2) .after-follow__item-title {
    letter-spacing: 0.05em;
  }
}

.after-follow__img {
  width: 6rem;
  height: 5rem;
  max-width: 100%;
}
@media (min-width: 787px) {
  .after-follow__img {
    width: 7.5rem;
    height: 6.25rem;
  }
}
.after-follow__img img {
  width: 100%;
  height: 100%;
}

.after-follow__item-body {
  display: contents;
}
@media (min-width: 787px) {
  .after-follow__item-body {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

.after-follow__item-title {
  color: #196FDD;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: 0.05em;
  position: absolute;
  top: 3.125rem;
  left: 7.8125rem;
}
@media (min-width: 787px) {
  .after-follow__item-title {
    position: initial;
    top: initial;
    left: initial;
  }
}

.after-follow__item-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
}

.after-follow__item-text {
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.02em;
  padding-left: 1.875rem;
  position: relative;
}
.after-follow__item-text::before {
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  left: 0;
  width: 1.25rem;
  height: 1.25rem;
  background: url(../img/webp/gradation-check-icon.webp) no-repeat center center/contain;
}

.after-follow__support {
  position: relative;
  margin-top: 3rem;
  padding: 3.5rem 1.25rem 11.625rem 1.5rem;
  border-radius: 0.25rem;
  background: url(../img/webp/after-follow-bg-sp.webp) no-repeat center center/cover;
}
@media (min-width: 787px) {
  .after-follow__support {
    position: initial;
    padding: 3.5rem 2rem 4.625rem;
    background: url(../img/webp/after-follow-bg-pc.webp) no-repeat center center/cover;
  }
}

.after-follow__support-inner {
  width: 55.0625rem;
  max-width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5rem;
  margin-inline: auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 787px) {
  .after-follow__support-inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.after-follow__support-body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.75rem;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.after-follow__support-title {
  color: #F29600;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.05em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.8125rem;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
.after-follow__support-title span {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 0.9375rem;
  gap: 0.5rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: #FFF;
}
.after-follow__support-title span::before, .after-follow__support-title span::after {
  content: "";
  display: inline-block;
  width: 1rem;
  height: 0.125rem;
  background: #FFF;
}
.after-follow__support-title span::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.after-follow__support-title span::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.after-follow__support-text {
  font-size: 0.9375rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: #FFF;
  font-weight: 500;
  text-align: center;
}

.after-follow__support-img {
  width: 28.375rem;
  height: 18.5625rem;
  max-width: 100%;
  position: absolute;
  bottom: -10rem;
  right: -1.875rem;
  z-index: 1;
}
@media (min-width: 787px) {
  .after-follow__support-img {
    position: initial;
  }
}
.after-follow__support-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.5rem;
}

.author-box {
  margin-top: 2.5rem;
  border: 0.125rem solid #DFE9F3;
  border-radius: 0.25rem;
  padding: 1.5rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 5rem 1fr;
  grid-template-columns: 5rem 1fr;
  gap: 1rem;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background: url(../img/webp/author-box-bg-sp.webp) no-repeat center center/cover;
  width: 21.375rem;
  max-width: 100%;
  margin-inline: auto;
}
@media (min-width: 787px) {
  .author-box {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 1.5rem;
    background: url(../img/webp/author-box-bg-pc.webp) no-repeat center center/cover;
  }
}

.author-box__thumb {
  width: 5rem;
  height: 6.4375rem;
  max-width: 100%;
  border-radius: 0.125rem;
}
@media (min-width: 787px) {
  .author-box__thumb {
    width: 6.875rem;
    height: 8.875rem;
  }
}
.author-box__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.author-box__body {
  display: contents;
}
@media (min-width: 787px) {
  .author-box__body {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.5rem;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

.author-box__profile.--pc {
  display: none;
}
@media (min-width: 787px) {
  .author-box__profile.--pc {
    padding-left: 2.8125rem;
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.125rem;
  }
  .author-box__profile.--pc::before {
    content: "";
    position: absolute;
    top: 50%;
    translate: 0 -50%;
    left: 0;
    background: url(../img/webp/profile-icon.webp) no-repeat center center/cover;
    width: 1.5rem;
    height: 1.5rem;
    display: block;
  }
}
@media (min-width: 787px) and (min-width: 787px) {
  .author-box__profile.--pc::before {
    width: 2rem;
    height: 2rem;
  }
}
.author-box__profile.--sp {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.25rem;
}
@media (min-width: 787px) {
  .author-box__profile.--sp {
    display: none;
  }
}
.author-box__profile.--sp span {
  padding-left: 2rem;
  display: block;
  position: relative;
  font-size: 0.8125rem;
  line-height: 1.2;
  letter-spacing: 0.02em;
  font-weight: 500;
}
.author-box__profile.--sp span::before {
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  left: 0;
  background: url(../img/webp/profile-icon.webp) no-repeat center center/cover;
  width: 1.5rem;
  height: 1.5rem;
  display: block;
}
.author-box__profile.--sp .author-box__name {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.25rem;
}

.author-box__name {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
}
@media (min-width: 787px) {
  .author-box__name {
    font-size: 1.125rem;
  }
}

.author-box__qualification {
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.05em;
}
@media (min-width: 787px) {
  .author-box__qualification {
    font-size: 0.75rem;
  }
}

.author-box__text {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.6;
  -ms-grid-column-span: 2;
  grid-column: span 2;
}
@media (min-width: 787px) {
  .author-box__text {
    grid-column: initial;
    font-size: 0.9375rem;
    font-weight: 400;
  }
}
.author-box__text br {
  display: none;
}
@media (min-width: 787px) {
  .author-box__text br {
    display: inline;
  }
}

.top-blog {
  padding-block: 9.375rem 5rem;
}
@media (min-width: 787px) {
  .top-blog {
    padding-block: 6.25rem;
  }
}

.top-blog__inner {
  padding-inline: 1.5rem;
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3.5rem;
}
@media (min-width: 787px) {
  .top-blog__inner {
    width: 70rem;
    max-width: 100%;
    margin-inline: auto;
    padding-inline: initial;
  }
}

.category {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5rem;
  padding-inline: 1.5rem;
}
@media (min-width: 787px) {
  .category {
    padding-inline: initial;
  }
}

.category__title {
  font-size: 0.9375rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
  font-weight: 700;
  display: inline-block;
  position: relative;
}
.category__title::after {
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  margin-left: 0.5rem;
  width: 1.125rem;
  height: 1.1875rem;
  background: url(../img/svg/search-icon.svg) no-repeat center center/contain;
}

.category__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.category__item {
  font-size: 0.75rem;
  color: #196FDD;
  border: 1px solid #196FDD;
  letter-spacing: 0.05em;
  font-weight: 500;
  border-radius: 1.25rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (min-width: 787px) {
  .category__item {
    font-size: 0.875rem;
    color: #002E6E;
    border: 1px solid #9AACC6;
    border-radius: 0.25rem;
  }
}
.category__item.active {
  background: #196FDD;
  color: #FFF;
  border-color: #196FDD;
}
.category__item a {
  display: block;
  color: inherit;
  text-decoration: none;
  padding: 0.5rem 1rem;
}
@media (min-width: 787px) {
  .category__item a {
    padding: 0.375rem 1rem;
  }
}
@media (any-hover: hover) {
  .category__item:hover {
    background: #196FDD;
    color: #FFF;
    border-color: #196FDD;
  }
}

.blog__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
@media (min-width: 787px) {
  .blog__list {
    gap: 1.5rem;
  }
}

.blog__item {
  background: #F2F2F2;
  border-radius: 0.25rem;
  width: 21.375rem;
  max-width: 100%;
  margin-inline: auto;
  padding: 1.5rem;
}
@media (min-width: 787px) {
  .blog__item {
    width: initial;
    margin-inline: initial;
    background: #F4F6F8;
    padding: initial;
  }
}

.blog__item-link {
  display: contents;
  pointer-events: none;
}
@media (min-width: 787px) {
  .blog__item-link {
    pointer-events: initial;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 2rem;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: relative;
    gap: 1.5rem;
  }
}
@media (min-width: 787px) and (any-hover: hover) {
  .blog__item-link:hover .blog__item-img img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  .blog__item-link:hover .circle {
    width: 3.5rem;
    height: 3.5rem;
    -webkit-transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1), height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1), height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .blog__item-link:hover .circle::after {
    opacity: 1;
    -webkit-transition: opacity 0.3s ease 0.15s;
    transition: opacity 0.3s ease 0.15s;
  }
}
.blog__item-link .blog__circle-wrapper {
  display: none;
}
@media (min-width: 787px) {
  .blog__item-link .blog__circle-wrapper {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    position: absolute;
    top: 50%;
    translate: 0 -50%;
    right: 2rem;
    z-index: 1;
  }
}

.blog__item-inner {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5rem;
}
@media (min-width: 787px) {
  .blog__item-inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.blog__item-img {
  width: 18.375rem;
  max-width: 100%;
  border-radius: 0.125rem;
  overflow: hidden;
  aspect-ratio: 294/165;
  overflow: hidden;
}
@media (min-width: 787px) {
  .blog__item-img {
    width: 16.25rem;
    aspect-ratio: 260/146;
  }
}
.blog__item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  will-change: transform;
}

.blog__item-body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  text-align: start;
}
@media (min-width: 787px) {
  .blog__item-body {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 42.25rem;
        -ms-flex: 0 0 42.25rem;
            flex: 0 0 42.25rem;
  }
}
.blog__item-body .meta {
  display: none;
}
@media (min-width: 787px) {
  .blog__item-body .meta {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1rem;
    width: 13.4375rem;
    max-width: 100%;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.blog__item-body .meta-category {
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.8;
  color: #196FDD;
  border: 1px solid #196FDD;
  border-radius: 1.25rem;
  padding: 0.25rem 1rem;
}
.blog__item-body .meta-date {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4;
  font-family: "Work Sans", sans-serif;
  letter-spacing: -0.02em;
  color: #A4AAB2;
}

.blog__item.--archive {
  background: #F4F6F8;
  padding: 0;
}
.blog__item.--archive .blog__item-body .meta {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}
@media (min-width: 787px) {
  .blog__item.--archive .blog__item-body .meta {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: initial;
    width: 12.1875rem;
    max-width: 100%;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.blog__item.--archive .blog__item-title {
  font-size: 1.25rem;
}
.blog__item.--archive .blog__item-text {
  font-size: 0.875rem;
}
@media (min-width: 787px) {
  .blog__item.--archive .blog__item-text {
    font-size: 0.9375rem;
  }
}
.blog__item.--archive .blog__btn {
  display: none;
}
.blog__item.--archive .blog__circle-wrapper-sp {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-shadow: none;
          box-shadow: none;
}
@media (min-width: 787px) {
  .blog__item.--archive .blog__circle-wrapper-sp {
    display: none;
  }
}
.blog__item.--archive .blog__item-link {
  pointer-events: initial;
  display: block;
  padding: 1.5rem;
}

.blog__item-text-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}
@media (min-width: 787px) {
  .blog__item-text-wrap {
    display: contents;
  }
}
.blog__item-text-wrap .blog__item-text {
  width: 13.875rem;
  max-width: 100%;
}
@media (min-width: 787px) {
  .blog__item-text-wrap .blog__item-text {
    width: 100%;
  }
}

.blog__item-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #196FDD;
  line-height: 1.28;
  letter-spacing: 0.05em;
}
@media (min-width: 787px) {
  .blog__item-title {
    font-size: 1.25rem;
  }
}

.blog__item-text {
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.02em;
}
@media (min-width: 787px) {
  .blog__item-text {
    font-size: 0.875rem;
  }
}

.top-blog__btn {
  margin-inline: auto;
}
.top-blog__btn .section-btn {
  -webkit-box-shadow: none;
          box-shadow: none;
  background: #F5F5F5;
}
@media (min-width: 787px) {
  .top-blog__btn .section-btn {
    width: 19rem;
  }
}

.blog__btn {
  margin-top: 1.5rem;
}
@media (min-width: 787px) {
  .blog__btn {
    display: none;
  }
}
.blog__btn .section-btn {
  width: 15.3125rem;
  max-width: 100%;
  height: 3.375rem;
}
.blog__btn .btn-text {
  background: -webkit-gradient(linear, left top, right top, from(#3990FF), to(#196FDD));
  background: linear-gradient(to right, #3990FF, #196FDD);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  font-weight: 700;
  text-indent: initial;
}

.page-contents.blog .category__item {
  border-radius: 0.25rem;
  border: 1px solid #9AACC6;
  color: #002E6E;
  font-size: 0.875rem;
}
@media (any-hover: hover) {
  .page-contents.blog .category__item:hover {
    color: #FFF;
  }
}
.page-contents.blog .category__item.active {
  color: #FFF;
}

.branch {
  background: #FFF;
  padding-block: 5rem;
}
@media (min-width: 787px) {
  .branch {
    padding-block: 6.25rem;
  }
}
.branch .section__title-wrap {
  position: relative;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.branch .section__title-wrap::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2.5rem;
  width: 100%;
  height: 1px;
  background: #A7C8F6;
}
.branch .section__title {
  background: linear-gradient(135deg, #004098 0%, #3990FF 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}

.branch__inner {
  width: 70rem;
  max-width: 100%;
  margin-inline: auto;
  padding-inline: 1.5rem;
}
@media (min-width: 787px) {
  .branch__inner {
    padding-inline: initial;
  }
}

.branch__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  margin-top: 5.5rem;
}
@media (min-width: 787px) {
  .branch__list {
    -ms-grid-columns: (1fr)[5];
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
  }
}

.branch__item {
  border-radius: 0.25rem;
  background: -webkit-gradient(linear, left top, left bottom, from(white), to(white)) padding-box, -webkit-gradient(linear, left top, right top, from(#3990FF), to(#196FDD)) border-box;
  background: linear-gradient(white, white) padding-box, linear-gradient(90deg, #3990FF, #196FDD) border-box;
  border: 1px solid transparent;
}

.branch__item-title {
  font-size: 1.125rem;
  text-align: center;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.05em;
  color: #FFF;
  padding-block: 0.5rem;
  background: -webkit-gradient(linear, left top, right top, from(#3990FF), to(#196FDD));
  background: linear-gradient(to right, #3990FF 0%, #196FDD 100%);
}

.branch__item-body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding-block: 1rem;
}

.branch__info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.125rem;
  text-align: center;
}

.branch__item-img {
  width: 8.4375rem;
  max-width: 100%;
  height: 4.21875rem;
  border-radius: 0.25rem;
}
@media (min-width: 787px) {
  .branch__item-img {
    width: 10rem;
    height: 5rem;
  }
}
.branch__item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.branch__tel {
  color: #196FDD;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
  font-family: "Work Sans", sans-serif;
}
@media (min-width: 787px) {
  .branch__tel {
    font-size: 1.375rem;
    letter-spacing: 0.02em;
  }
}

.branch__address {
  font-size: 0.75rem;
  line-height: 1.4;
  font-weight: 500;
}
@media (min-width: 787px) {
  .branch__address {
    font-size: 0.875rem;
    line-height: 1.3;
    letter-spacing: 0.02em;
  }
}

.breadcrumb {
  padding-block: 1.5rem;
  padding-inline: 1.25rem;
  font-size: 0.875rem;
  font-weight: 400;
}
@media (min-width: 787px) {
  .breadcrumb {
    width: 77.5rem;
    max-width: 100%;
    margin-inline: auto;
  }
}

.top-case {
  padding-block: 6.25rem;
  background: #DFE9F3;
}

.top-case__title {
  white-space: nowrap;
}

.top-case__inner {
  padding-inline: 1.25rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3rem;
  text-align: center;
}
@media (min-width: 787px) {
  .top-case__inner {
    padding-inline: initial;
    width: 70.125rem;
    max-width: 100%;
    margin-inline: auto;
  }
}

.case-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[1];
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
  width: 21.75rem;
  max-width: 100%;
  margin-inline: auto;
}
@media (min-width: 787px) {
  .case-list {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
    width: initial;
    margin-inline: initial;
  }
}

.case-list__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}

.case-list__item a {
  background: #FFF;
  border-radius: 0.25rem;
  padding: 1.375rem 0.9375rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  position: relative;
  width: 100%;
  max-width: 100%;
  margin-inline: auto;
}
@media (min-width: 787px) {
  .case-list__item a {
    width: initial;
    margin-inline: initial;
    padding: 1.375rem;
  }
}
.case-list__item a .case-list__circle-wrapper {
  position: absolute;
  top: 10.5rem;
  right: 0.5rem;
  z-index: 1;
}
@media (any-hover: hover) {
  .case-list__item a:hover .case-list__item-img img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  .case-list__item a:hover .case-list__item-head .reduction {
    color: #196FDD;
  }
  .case-list__item a:hover .circle {
    width: 3.5rem;
    height: 3.5rem;
    -webkit-transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1), height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1), height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .case-list__item a:hover .circle::after {
    opacity: 1;
    -webkit-transition: opacity 0.3s ease 0.15s;
    transition: opacity 0.3s ease 0.15s;
  }
}

.case-list__item-img {
  width: 100%;
  height: 10.5625rem;
  max-width: 100%;
  margin-inline: auto;
  border-radius: 0.125rem;
  overflow: hidden;
}
@media (min-width: 787px) {
  .case-list__item-img {
    width: 18.75rem;
  }
}
.case-list__item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  will-change: transform;
}

.case-list__item-head {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-left: 0.75rem;
  position: relative;
}
.case-list__item-head::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -50%;
  width: 0.25rem;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(#3990FF), to(#196FDD));
  background: linear-gradient(to bottom, #3990FF, #196FDD);
}
.case-list__item-head .reduction {
  font-size: 1.5rem;
  font-weight: 700;
  display: inline-block;
  color: #252D3E;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  letter-spacing: 0.05em;
}
.case-list__item-head .reduction-marker {
  position: relative;
  z-index: 0;
}
.case-list__item-head .reduction-marker::after {
  content: "";
  position: absolute;
  left: 50%;
  translate: -50%;
  bottom: 0.1875rem;
  border-bottom: 0.5rem solid #FFF07F;
  width: 100%;
  height: 0.5rem;
  z-index: -1;
}
.case-list__item-head .structure {
  color: #A4AAB2;
  font-size: 0.875rem;
  font-weight: 700;
  padding-left: 1.25rem;
  position: relative;
}
.case-list__item-head .structure::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0 -50%;
  width: 1rem;
  height: 1rem;
  background: url(../img/svg/people-silhouette-icon.svg) no-repeat center center/contain;
}

.tag-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 0.5rem;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 16.875rem;
  max-width: 100%;
}
.tag-wrap span {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 700;
  background: #DFE9F3;
  padding: 0.125rem 1rem;
  border-radius: 3.125rem;
}

.case-list__item-text {
  text-align: initial;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.6;
  padding-inline: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 4.8em;
}
.case-list__btn {
  margin-inline: auto;
}
@media (min-width: 787px) {
  .case-list__btn .section-btn {
    width: 17.0625rem;
  }
}

.case-list__item-body {
  background: #ECF6FD;
  padding: 0.875rem 0.9375rem;
}
@media (min-width: 787px) {
  .case-list__item-body {
    padding: 0.875rem;
  }
}

.case-list__item-body-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width: 787px) {
  .case-list__item-body-inner {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.case-list__item-body-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.25rem;
}
.case-list__item-body-box .text {
  font-size: 0.875rem;
  font-weight: 700;
  white-space: nowrap;
}
.case-list__item-body-box .icon {
  width: 1.5rem;
  height: 1.5rem;
  aspect-ratio: 1;
}
.case-list__item-body-box .price {
  font-size: 0.875rem;
  font-weight: 700;
  white-space: nowrap;
}
.case-list__item-body-box .price span {
  font-size: 0.625rem;
}
.case-list__item-body-box.--after {
  position: relative;
  padding-left: 1.3125rem;
}
.case-list__item-body-box.--after::before {
  content: "";
  position: absolute;
  left: 0.25rem;
  top: 50%;
  translate: 0 -50%;
  width: 0.84375rem;
  height: 0.8125rem;
  background: url(../img/svg/arrow-black.svg) no-repeat center center/contain;
}
.case-list__item-body-box.--total {
  position: relative;
  padding-left: 1.875rem;
}
@media (min-width: 787px) {
  .case-list__item-body-box.--total {
    padding-left: 2.5rem;
  }
}
.case-list__item-body-box.--total::before {
  content: "";
  position: absolute;
  left: 1.0625rem;
  top: 50%;
  translate: 0 -50%;
  width: 1.1px;
  height: 2.125rem;
  background: repeating-linear-gradient(to bottom, #3990FF 0, #3990FF 0.125rem, transparent 0.125rem, transparent 0.25rem);
}
@media (min-width: 787px) {
  .case-list__item-body-box.--total::before {
    left: 1.4375rem;
    background: repeating-linear-gradient(to bottom, #3990FF 0, #3990FF 0.1875rem, transparent 0.1875rem, transparent 0.375rem);
  }
}
.case-list__item-body-box.--total .icon {
  width: 1.1875rem;
}
.case-list__item-body-box.--total .text {
  background: -webkit-gradient(linear, left top, right top, from(#3990FF), to(#196FDD));
  background: linear-gradient(to right, #3990FF, #196FDD);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
.case-list__item-body-box.--total .price {
  background: -webkit-gradient(linear, left top, right top, from(#3990FF), to(#196FDD));
  background: linear-gradient(to right, #3990FF, #196FDD);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}

.category-area {
  padding-block: 5rem;
  background: #F4F6F8;
}
@media (min-width: 787px) {
  .category-area {
    padding-block: 5rem 6.25rem;
  }
}
.category-area .category__list {
  margin-top: 3rem;
}
.category-area .category__item {
  font-size: 0.875rem;
  color: #002E6E;
  border: 1px solid #9AACC6;
  border-radius: 0.25rem;
}
@media (any-hover: hover) {
  .category-area .category__item:hover {
    color: #FFF;
  }
}

.category-area__inner {
  width: 21.375rem;
  max-width: 100%;
  margin-inline: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
@media (min-width: 787px) {
  .category-area__inner {
    width: 70rem;
    gap: 2rem;
  }
}

.category-box {
  background: #FFF;
  padding: 2.5rem 1rem;
  border-radius: 0.25rem;
}
@media (min-width: 787px) {
  .category-box {
    padding: 2.5rem;
  }
}

.category-area__title-wrap {
  position: relative;
  text-align: center;
}
.category-area__title-wrap::after {
  content: "";
  position: absolute;
  left: 50%;
  translate: -50%;
  bottom: -1.5rem;
  width: 100%;
  height: 0.125rem;
  background: -webkit-gradient(linear, left top, right top, from(#3990FF), to(#196FDD));
  background: linear-gradient(to right, #3990FF 0%, #196FDD 100%);
}

.category-area__title {
  display: inline-block;
  font-size: 1.125rem;
  font-weight: 700;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background: linear-gradient(135deg, #004098 0%, #3990FF 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}

.circle-wrapper {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  background: #fff;
  -webkit-box-shadow: 2px 8px 20px 0 rgba(147, 178, 212, 0.16);
          box-shadow: 2px 8px 20px 0 rgba(147, 178, 212, 0.16);
  border-radius: 100vmax;
  position: relative;
  cursor: pointer;
}

.circle {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: -webkit-gradient(linear, left top, right top, from(#3990FF), to(#196FDD));
  background: linear-gradient(to right, #3990FF, #196FDD);
  -webkit-transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1), height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1), height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.circle::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 0.5rem;
  height: 0.5rem;
  background: #fff;
  border-radius: 50%;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.company-greeting {
  background: #DFE9F3;
  padding-block: 2.9375rem 5rem;
}
@media (min-width: 787px) {
  .company-greeting {
    padding-block: 10.625rem 5rem;
  }
}
.company-greeting .section__title-wrap {
  position: relative;
  width: 8rem;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media (min-width: 787px) {
  .company-greeting .section__title-wrap {
    width: 20rem;
  }
}
.company-greeting .section__title-wrap::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2rem;
  width: 100%;
  height: 1px;
  background: -webkit-gradient(linear, left top, right top, from(#004098), to(#3990FF));
  background: linear-gradient(to right, #004098, #3990FF);
}
.company-greeting .company-greeting__title {
  background: linear-gradient(135deg, #004098 0%, #3990FF 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  font-size: 1.5rem;
  line-height: 1.28;
  letter-spacing: 0.05em;
}
@media (min-width: 787px) {
  .company-greeting .company-greeting__title {
    font-size: 2rem;
    line-height: 1.2;
  }
}

.company-greeting__inner {
  width: 70rem;
  max-width: 100%;
  margin-inline: auto;
  position: relative;
}

.company-greeting__img {
  width: 14.875rem;
  height: 17rem;
}
@media (min-width: 787px) {
  .company-greeting__img {
    width: 47rem;
    height: 25rem;
  }
}
.company-greeting__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.company-greeting__img {
  position: absolute;
  right: 0;
  top: -13rem;
  z-index: 1;
}
@media (min-width: 787px) {
  .company-greeting__img {
    top: -20.3125rem;
  }
}

.company-greeting__items {
  display: block;
  gap: 1.5rem;
  width: 100%;
  padding-inline: 1rem;
  max-width: 100%;
  margin-inline: auto;
  margin-top: 5rem;
  gap: 1rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 787px) {
  .company-greeting__items {
    width: 70rem;
    padding-inline: initial;
    margin-top: 7rem;
  }
}

.company-greeting__item {
  background: url(../img/webp/company-greeting-bg-sp.webp) no-repeat center center/cover;
  padding: 2.5rem 1.5rem;
  border-radius: 0.25rem;
  gap: 2rem;
  position: relative;
}
@media (min-width: 787px) {
  .company-greeting__item {
    padding: 2.5rem 5rem 2.5rem 2.5rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    background: url(../img/webp/company-greeting-bg-pc.webp) no-repeat center center/cover;
  }
}
.company-greeting__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 18.75rem;
  height: 21.875rem;
  z-index: 2;
  background: url(../img/webp/box-shadow.webp) no-repeat center center/cover;
}

.company-greeting__item-img {
  width: 100%;
  height: 25rem;
  margin-inline: auto;
}
@media (min-width: 787px) {
  .company-greeting__item-img {
    width: 15.5rem;
    height: 20rem;
  }
}
.company-greeting__item-img img {
  width: 100%;
  height: 100%;
}

.company-greeting__item-body {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}
@media (min-width: 787px) {
  .company-greeting__item-body {
    margin-top: initial;
  }
}

.company-greeting__item-head {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}
.company-greeting__item-head::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -50%;
  width: 0.25rem;
  height: 3.5rem;
  background: -webkit-gradient(linear, left top, left bottom, from(#3990FF), to(#196FDD));
  background: linear-gradient(to bottom, #3990FF, #196FDD);
}

.company-greeting__item-position {
  font-size: 0.875rem;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.company-greeting__item-name {
  font-size: 1.5rem;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.company-greeting__item-title {
  font-size: 1.5rem;
  line-height: 1.28;
  font-weight: 700;
  letter-spacing: 0.05em;
  background: -webkit-gradient(linear, left top, right top, from(#3990FF), to(#196FDD));
  background: linear-gradient(to right, #3990FF, #196FDD);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
@media (min-width: 787px) {
  .company-greeting__item-title {
    line-height: 1.6;
    letter-spacing: 0.02em;
  }
}

.company-greeting__item-text {
  font-size: 0.9375rem;
  line-height: 1.6;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.company-greeting__item-text:nth-child(n+2) {
  margin-top: 1.5rem;
}

.company-group {
  padding-block: 8.375rem 15rem;
}
@media (min-width: 787px) {
  .company-group {
    padding-block: 8.375rem 17.375rem;
  }
}

.company-group__inner {
  width: 100%;
  max-width: 100%;
  margin-inline: auto;
  padding-inline: 1.5rem;
}
@media (min-width: 787px) {
  .company-group__inner {
    width: 70rem;
    padding-inline: initial;
  }
}

.company-group__lead {
  font-size: 1rem;
  line-height: 1.8;
  font-weight: 500;
  margin-top: 4.75rem;
  letter-spacing: 0.01em;
  text-align: left;
}
@media (min-width: 787px) {
  .company-group__lead {
    margin-top: 5.25rem;
    text-align: center;
  }
}

.company-group__items {
  width: 70rem;
  max-width: 100%;
  margin-inline: auto;
  margin-top: 3rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[1];
  grid-template-columns: repeat(1, 1fr);
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 1rem;
}
@media (min-width: 787px) {
  .company-group__items {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.company-group__item {
  border-radius: 0.25rem;
  padding: 1rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  background: #F2F2F2 url(../img/webp/company-group-item-bg-sp.webp) no-repeat center center/cover;
}
@media (min-width: 787px) {
  .company-group__item {
    padding: 1.25rem 2.5rem;
    gap: 1.5rem;
    background: #F2F2F2 url(../img/webp/company-group-item-bg-pc.webp) no-repeat center center/cover;
  }
}

.company-group__item-img {
  width: 5rem;
  height: 4.1875rem;
}
@media (min-width: 787px) {
  .company-group__item-img {
    width: 7.5rem;
    height: 6.25rem;
  }
}
.company-group__item-img img {
  width: 100%;
  height: 100%;
}

.company-group__item-body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.company-group__item-title {
  font-size: 1.25rem;
  line-height: 1.28;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #196FDD;
}
@media (min-width: 787px) {
  .company-group__item-title {
    font-size: 1.5rem;
  }
}

.company-group__item-text {
  font-size: em(15);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.02em;
}
@media (min-width: 787px) {
  .company-group__item-text {
    letter-spacing: 0.05em;
    line-height: 1.5;
  }
}

.company-info {
  padding-block: 8.375rem 5rem;
}

.company-info__inner {
  padding-inline: 1.5rem;
  max-width: 100%;
  margin-inline: auto;
}
@media (min-width: 787px) {
  .company-info__inner {
    width: 60rem;
    padding-inline: initial;
  }
}

.company-info__content {
  margin-top: 4.6875rem;
}
@media (min-width: 787px) {
  .company-info__content {
    margin-top: 5.25rem;
  }
}

.company-info__list-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #DDDDDD;
  padding-block: 1rem;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
}
@media (min-width: 787px) {
  .company-info__list-item {
    gap: initial;
  }
}
.company-info__list-item.--align-start {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.company-info__list-item-title {
  width: 5.5rem;
  max-width: 100%;
  font-size: 0.875rem;
  font-weight: 700;
  background: -webkit-gradient(linear, left top, right top, from(#3990FF), to(#196FDD));
  background: linear-gradient(to right, #3990FF, #196FDD);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
@media (min-width: 787px) {
  .company-info__list-item-title {
    width: 11.25rem;
    font-size: 1rem;
    line-height: 1.3;
    letter-spacing: 0.02em;
  }
}

.company-info__list-item-text {
  font-size: 0.875rem;
  line-height: 1.6;
  font-weight: 400;
  color: #252D3E;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media (min-width: 787px) {
  .company-info__list-item-text {
    font-size: 0.9375rem;
    line-height: 1.8;
    letter-spacing: 0.02em;
  }
}

.top-company {
  background: url(../img/webp/bg-lightblue-glow-sp.webp) no-repeat top right/cover;
  padding-block: 6.25rem;
}
@media (min-width: 787px) {
  .top-company {
    background: url(../img/webp/bg-lightblue-glow.webp) no-repeat top right/cover;
  }
}
.top-company .top-company__inner {
  padding-inline: 1.5rem;
  max-width: 100%;
  margin-inline: auto;
}
@media (min-width: 787px) {
  .top-company .top-company__inner {
    width: 65rem;
    padding-inline: initial;
  }
}
.top-company .section__title-wrap {
  position: relative;
}
.top-company .section__title-wrap::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2.5rem;
  width: 100%;
  height: 1px;
  background: -webkit-gradient(linear, left top, right top, from(#004098), to(#3990FF));
  background: linear-gradient(to right, #004098, #3990FF);
}
.top-company .address {
  font-style: normal;
  font-size: 0.9375rem;
  line-height: 1.6;
  font-weight: 500;
  letter-spacing: 0.02em;
}
@media (min-width: 787px) {
  .top-company .address {
    letter-spacing: 0.05em;
  }
}
.top-company .address-map {
  position: relative;
  font-size: 0.8125rem;
  font-family: "Work Sans", sans-serif;
  font-weight: 500;
  border: 0.125rem solid #252D3E;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: initial;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.top-company .address-map::after {
  content: "";
  display: block;
  width: 0.625rem;
  height: 0.6875rem;
  aspect-ratio: 1;
  background-image: url(../img/svg/link-icon-black.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  -webkit-transition: background-image 0.3s ease;
  transition: background-image 0.3s ease;
}
@media (any-hover: hover) {
  .top-company .address-map:hover {
    background-color: #252D3E;
    color: #FFF;
  }
  .top-company .address-map:hover::after {
    background-image: url(../img/svg/link-icon-white.svg);
  }
}
.top-company .company__title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background: -webkit-gradient(linear, left top, right top, from(#3990FF), to(#196FDD));
  background: linear-gradient(to right, #3990FF, #196FDD);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  white-space: nowrap;
  text-align: left;
  display: inline-block;
  width: 100%;
}

.top-company__content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3.5rem;
  margin-top: 5rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: column-reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
@media (min-width: 787px) {
  .top-company__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-top: 7.5rem;
    gap: 5rem;
  }
}

.top-company__info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.5rem;
  width: 27.125rem;
  max-width: 100%;
}

.site-logo {
  width: 12.625rem;
  max-width: 100%;
}
.site-logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.company-name {
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  margin-top: 0.25rem;
  font-weight: 700;
}

.top-company__btn .btn-text {
  text-indent: -0.1875rem;
}

.top-company__phone {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.28;
  margin-top: 1rem;
}

.top-company__img {
  max-width: 100%;
  width: 21.375rem;
  height: 15.3125rem;
  border-radius: 0.25rem;
}
@media (min-width: 787px) {
  .top-company__img {
    width: 32.5rem;
    height: 23.375rem;
    border-radius: 0.5rem;
  }
}
.top-company__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.contact-cta {
  background: url(../img/webp/contact-bg-sp.webp) no-repeat center center/cover;
  overflow: hidden;
}
@media (min-width: 787px) {
  .contact-cta {
    background: url(../img/webp/contact-bg-pc.webp) no-repeat center center/cover;
  }
}

.contact-cta__inner {
  width: 20.6875rem;
  max-width: 100%;
  margin-inline: auto;
  padding-block: 3rem 9.0625rem;
  position: relative;
}
@media (min-width: 787px) {
  .contact-cta__inner {
    width: 70.9375rem;
    padding-block: 4.375rem;
  }
}
.contact-cta__inner::before, .contact-cta__inner::after {
  content: "";
  position: absolute;
  bottom: -6%;
  width: 10.5rem;
  height: 10.5rem;
}
@media (min-width: 787px) {
  .contact-cta__inner::before, .contact-cta__inner::after {
    width: 16.4375rem;
    height: 20.125rem;
    bottom: 0;
  }
}
.contact-cta__inner::before {
  left: -2.8125rem;
  background: url(../img/webp/clip-person-3.webp) no-repeat center top/cover;
}
@media (min-width: 787px) {
  .contact-cta__inner::before {
    left: 0;
    background: url(../img/webp/clip-person-3.webp) no-repeat center center/cover;
  }
}
.contact-cta__inner::after {
  right: -2.8125rem;
  background: url(../img/webp/clip-person-4.webp) no-repeat center top/cover;
}
@media (min-width: 787px) {
  .contact-cta__inner::after {
    right: 0;
    background: url(../img/webp/clip-person-4.webp) no-repeat center center/cover;
  }
}

.contact-cta__content {
  text-align: center;
}

.contact-cta__text {
  width: 100%;
  max-width: 100%;
  border-radius: 3.125rem;
  margin-inline: auto;
  padding-block: 0.5rem;
  padding-inline: 1.5rem;
  background: #FFF;
  font-size: 1.125rem;
  color: #196FDD;
  font-weight: 700;
  letter-spacing: 0.04em;
  position: relative;
  white-space: nowrap;
}
@media (min-width: 787px) {
  .contact-cta__text {
    font-size: 1.25rem;
    padding-inline: 2.5rem;
    width: 24.5rem;
  }
}
.contact-cta__text::after {
  content: "";
  position: absolute;
  left: 50%;
  translate: -50%;
  bottom: -0.4375rem;
  width: 1.5rem;
  height: 0.5rem;
  background: url(../img/svg/white-triangle.svg) no-repeat center center/contain;
}

.contact-cta__btn {
  position: relative;
  display: inline-block;
  margin-top: 1.875rem;
}
.contact-cta__btn .contact__btn .contact-btn__circle {
  left: 0;
  width: 2.5rem;
  height: 2.5rem;
}
@media (min-width: 787px) {
  .contact-cta__btn .contact__btn .contact-btn__circle {
    width: 3.25rem;
    height: 3.25rem;
  }
}
.contact-cta__btn .contact__btn {
  padding-left: 3rem;
  padding-right: 0;
  padding-block: 0;
}
@media (min-width: 787px) {
  .contact-cta__btn .contact__btn {
    padding-left: 3.875rem;
  }
}
.contact-cta__btn .icon-phone {
  width: 1.125rem;
  height: 1.75rem;
}
.contact-cta__btn .contact-btn__circle::after {
  background: -webkit-gradient(linear, left top, right top, from(#3990FF), to(#196FDD));
  background: linear-gradient(to right, #3990FF, #196FDD);
}
.contact-cta__btn .contact__btn-tel {
  font-size: 2.75rem;
  font-weight: 500;
  letter-spacing: -0.05em;
  font-family: "Work Sans", sans-serif;
  color: #FFF;
  white-space: nowrap;
}
@media (min-width: 787px) {
  .contact-cta__btn .contact__btn-tel {
    font-size: 4.375rem;
    letter-spacing: -0.03em;
  }
}

/* hover アニメーション */
@media (hover: hover) and (pointer: fine) {
  .contact__btn:hover .contact-btn__circle::before {
    scale: 0.8;
  }
  .contact__btn:hover .contact-btn__circle::after {
    opacity: 1;
    scale: 0.12;
  }
  .contact__btn:hover .icon-mask.icon-phone {
    scale: 0;
  }
}
.contact-cta__info {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #FFF;
  line-height: 1.6;
  margin-top: 0.5rem;
}
@media (min-width: 787px) {
  .contact-cta__info {
    font-size: 0.9375rem;
    line-height: 1.8;
  }
}

input[type=text],
input[type=email],
input[type=tel],
select,
textarea {
  border-radius: 0.25rem;
  width: 100%;
  border: none;
  padding: 1rem 1.5625rem;
  background: #FFF;
  border: 0.0625rem solid #9AACC6;
  font-weight: 500;
  line-height: normal;
  font-size: 0.9375rem;
}
@media (min-width: 787px) {
  input[type=text],
  input[type=email],
  input[type=tel],
  select,
  textarea {
    padding: 0.875rem 1.5rem;
  }
}
input[type=text]::-webkit-input-placeholder, input[type=email]::-webkit-input-placeholder, input[type=tel]::-webkit-input-placeholder, select::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #B7C6D9;
}
input[type=text]::-moz-placeholder, input[type=email]::-moz-placeholder, input[type=tel]::-moz-placeholder, select::-moz-placeholder, textarea::-moz-placeholder {
  color: #B7C6D9;
}
input[type=text]:-ms-input-placeholder, input[type=email]:-ms-input-placeholder, input[type=tel]:-ms-input-placeholder, select:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #B7C6D9;
}
input[type=text]::-ms-input-placeholder, input[type=email]::-ms-input-placeholder, input[type=tel]::-ms-input-placeholder, select::-ms-input-placeholder, textarea::-ms-input-placeholder {
  color: #B7C6D9;
}
input[type=text]::placeholder,
input[type=email]::placeholder,
input[type=tel]::placeholder,
select::placeholder,
textarea::placeholder {
  color: #B7C6D9;
}

textarea {
  height: 10rem;
  resize: vertical;
}
@media (min-width: 787px) {
  textarea {
    height: 7.875rem;
  }
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

.contact__select-wrap {
  position: relative;
}
.contact__select-wrap svg {
  position: absolute;
  top: calc(50% + 2px);
  translate: 0 -50%;
  right: 10.69px;
  width: 17.313px;
  height: auto;
  pointer-events: none;
}

input[type=checkbox] {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
}

input[type=checkbox]:checked + span::after {
  opacity: 1;
}

.contact__data-checkbox {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
}

.wpcf7-list-item-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: normal;
  padding-left: 0.625rem;
  position: relative;
}
@media (min-width: 787px) {
  .wpcf7-list-item-label {
    font-size: 0.875rem;
    padding-left: 1.875rem;
  }
}
.wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  top: 0.1875rem;
  left: -0.75rem;
  width: 0.9375rem;
  height: 0.9375rem;
  border: 1px solid #ddd;
}
@media (min-width: 787px) {
  .wpcf7-list-item-label::before {
    left: 0;
  }
}
.wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  top: 0.1875rem;
  left: -0.4375rem;
  width: 0.375rem;
  height: 0.75rem;
  rotate: 45deg;
  border-right: 0.09375rem solid #252D3E;
  border-bottom: 0.09375rem solid #252D3E;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media (min-width: 787px) {
  .wpcf7-list-item-label::after {
    left: 0.3125rem;
  }
}

.contact__acceptance {
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  text-align: center;
}
@media (min-width: 787px) {
  .contact__acceptance {
    margin-top: 1.5rem;
  }
}
.contact__acceptance a {
  font-weight: 500;
  color: #01377E;
  text-decoration: underline;
}

input[type=submit],
input[type=button] {
  border-radius: 0px;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  background: transparent;
  font-size: 0.9375rem;
}

input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}

.row.jc-center {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.contact__submit {
  text-align: center;
  margin-top: 1.5rem;
}
@media (min-width: 787px) {
  .contact__submit {
    margin-top: 2.5rem;
  }
}
.contact__submit button[type=submit] {
  padding-inline: 5rem;
  width: 14.25rem;
  height: 3.375rem;
  display: inline-block;
  border-radius: 3.125rem;
  color: #FFF;
  font-size: 0.9375rem;
  font-weight: bold;
}
.contact__submit .gradation-btn1 span::after {
  right: -3.4375rem;
}

.contact__form {
  margin-top: 4.75rem;
}
@media (min-width: 787px) {
  .contact__form {
    margin-top: 6rem;
  }
}

.contact {
  background: #DFE9F3;
  padding-block: 5rem;
}
@media (min-width: 787px) {
  .contact {
    padding-block: 6.25rem;
  }
}

.contact__inner {
  width: 100%;
  max-width: 100%;
  margin-inline: auto;
  padding-inline: 1rem;
}
@media (min-width: 787px) {
  .contact__inner {
    width: 70rem;
    padding-inline: initial;
  }
}

.contact__content {
  width: 100%;
  max-width: 100%;
  padding-inline: 1.5rem;
  padding-block: 8.375rem 5rem;
  margin-inline: auto;
  background: #FFF;
  border-radius: 0.25rem;
}
@media (min-width: 787px) {
  .contact__content {
    padding-inline: 10rem;
  }
}

.wpcf7-form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 1.5rem;
}
@media (min-width: 787px) {
  .wpcf7-form {
    row-gap: 1.5625rem;
    row-gap: 1rem;
  }
}

.contact__row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
.contact__head {
  font-size: 1.0625rem;
  font-weight: 500;
  letter-spacing: 0.08em;
}
.contact__head span.--must {
  position: relative;
  display: inline-block;
}
.contact__head span.--must::after {
  content: "必須";
  position: absolute;
  top: calc(50% + 1px);
  translate: 0 -50%;
  left: calc(100% + 0.6875rem);
  font-size: 0.75rem;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.08em;
  display: inline-block;
  padding: 0.1875rem 0.5rem;
  background: #F29600;
  color: #FFF;
  white-space: nowrap;
}
@media (min-width: 787px) {
  .contact__head span.--must::after {
    font-size: 0.75rem;
  }
}

input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px var(--form-bg, #fff) inset !important;
          box-shadow: 0 0 0px 1000px var(--form-bg, #fff) inset !important;
  -webkit-text-fill-color: var(--form-text, #000) !important;
}

.wpcf7-spinner {
  display: none !important;
}

summary {
  display: block;
}
summary::-webkit-details-marker {
  display: none;
}

.faq {
  padding-block: 2.5rem;
  padding-inline: 1rem;
}
@media (min-width: 787px) {
  .faq {
    padding-block: 5rem 2.5rem;
  }
}

.faq__title {
  white-space: nowrap;
}
@media (min-width: 787px) {
  .faq__title {
    white-space: initial;
  }
}

.faq__inner {
  width: 60rem;
  max-width: 100%;
  margin-inline: auto;
}

.faq__item {
  font-size: 1rem;
  border: 1px solid #D0D0D0;
  border-radius: 0.25rem;
  overflow: hidden;
}
.faq__item:nth-of-type(n + 2) {
  margin-top: 1rem;
}
@media (min-width: 787px) {
  .faq__item:nth-of-type(n + 2) {
    margin-top: 1.5rem;
  }
}

.faq__item-question {
  padding: 1.25rem 2.625rem 1.25rem 1.25rem;
  position: relative;
  background: #ECF6FD;
}
@media (min-width: 787px) {
  .faq__item-question {
    padding-block: 1rem;
    padding-inline: 1.5rem;
  }
}
.faq__item-question::before {
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  background: #196FDD;
  right: 1.25rem;
  width: 0.75rem;
  height: 0.125rem;
}
@media (min-width: 787px) {
  .faq__item-question::before {
    right: 1.5rem;
  }
}
.faq__item-question::after {
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  background: #196FDD;
  right: 1.5625rem;
  width: 0.125rem;
  height: 0.75rem;
  -webkit-transition: rotate 0.3s ease;
  transition: rotate 0.3s ease;
}
@media (min-width: 787px) {
  .faq__item-question::after {
    right: 1.8125rem;
  }
}
@media (any-hover: hover) {
  .faq__item-question:hover {
    cursor: pointer;
  }
}

.is-opened .faq__item-question::after {
  rotate: -90deg;
}

.faq__item-question-text {
  font-size: 0.9375rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
  font-weight: 700;
  color: #196FDD;
  list-style: none;
  position: relative;
  display: inline-block;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media (min-width: 787px) {
  .faq__item-question-text {
    font-size: 1rem;
    line-height: 1.8;
    -webkit-font-feature-settings: initial;
            font-feature-settings: initial;
  }
}

.faq__item-answer {
  height: 0;
  opacity: 0;
  overflow: hidden;
  -webkit-transition: height 0.4s ease, opacity 0.4s ease;
  transition: height 0.4s ease, opacity 0.4s ease;
}

.is-opened .faq__item-answer {
  opacity: 1;
}

.faq__item-answer-text {
  position: relative;
  padding: 1.25rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: #252D3E;
}
@media (min-width: 787px) {
  .faq__item-answer-text {
    padding-block: 1rem;
    padding-inline: 1.5rem 11.625rem;
    font-size: 1rem;
    line-height: 1.8;
  }
}

.flow {
  padding-block: 8.4375rem 5rem;
  background: #DFE9F3;
}

.flow__inner {
  width: 100%;
  max-width: 100%;
  margin-inline: auto;
  padding-inline: 1rem;
}
@media (min-width: 787px) {
  .flow__inner {
    width: 75rem;
    padding-inline: initial;
  }
}

.flow__items {
  margin-top: 4.75rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4.5625rem;
}
@media (min-width: 787px) {
  .flow__items {
    gap: 6.5625rem;
  }
}

.flow__item {
  counter-increment: flow-step;
  display: block;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
@media (min-width: 787px) {
  .flow__item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    height: 18.0625rem;
  }
}
.flow__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 5.75rem;
  height: 11.25rem;
  background: -webkit-gradient(linear, left top, left bottom, from(#3A8BFF), to(#196FDD));
  background: linear-gradient(180deg, #3A8BFF 0%, #196FDD 100%);
  -webkit-clip-path: polygon(0 0, 65% 0, 100% 50%, 65% 100%, 0 100%);
          clip-path: polygon(0 0, 65% 0, 100% 50%, 65% 100%, 0 100%);
}
@media (min-width: 787px) {
  .flow__item::before {
    width: 9.1875rem;
    height: 18.125rem;
  }
}
.flow__item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 50%;
  translate: -50%;
  bottom: -3.9375rem;
  width: 3.5625rem;
  height: 3.5625rem;
  background: url(../img/webp/double-arrow.webp) no-repeat center center/cover;
}
@media (min-width: 787px) {
  .flow__item:not(:last-child)::after {
    bottom: -4.6875rem;
  }
}

.flow__step {
  position: absolute;
  top: 20%;
  translate: 0 -50%;
  left: 1.25rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  color: #FFF;
}
@media (min-width: 787px) {
  .flow__step {
    top: 45%;
    left: 1.6875rem;
  }
}
.flow__step .flow__step-num {
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.05em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: column-reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
@media (min-width: 787px) {
  .flow__step .flow__step-num {
    font-size: 1.375rem;
  }
}
.flow__step .flow__step-num::before {
  content: counter(flow-step, decimal-leading-zero);
  font-size: 2.375rem;
  font-weight: 700;
  line-height: 1.2;
}
@media (min-width: 787px) {
  .flow__step .flow__step-num::before {
    font-size: 3.875rem;
  }
}

.flow__item-img {
  width: 22.375rem;
  height: 11.25rem;
  max-width: 100%;
}
@media (min-width: 787px) {
  .flow__item-img {
    width: 35.75rem;
    height: 18.0625rem;
  }
}
.flow__item-img img {
  width: 100%;
  height: 100%;
}

.flow__item-body {
  background: #FFF;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 2rem 1.5rem;
}
@media (min-width: 787px) {
  .flow__item-body {
    padding-inline: 3rem 5rem;
  }
}

.flow__item-title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.05em;
  background: -webkit-gradient(linear, left top, right top, from(#3990FF), to(#196FDD));
  background: linear-gradient(to right, #3990FF, #196FDD);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media (min-width: 787px) {
  .flow__item-title {
    line-height: 1.28;
  }
}

.flow__item-sub-title {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.28;
  background: -webkit-gradient(linear, left top, right top, from(#3990FF), to(#196FDD));
  background: linear-gradient(to right, #3990FF, #196FDD);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 1rem;
  text-align: justify;
}
@media (min-width: 787px) {
  .flow__item-sub-title {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    letter-spacing: 0.05em;
  }
}

.flow__item-text {
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: #252D3E;
  margin-top: 1rem;
}

.follow-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 200;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media (min-width: 787px) {
  .follow-cta {
    display: none;
  }
}
.follow-cta .contact__btn {
  border-radius: initial;
}
.follow-cta .contact__btn::after {
  border-radius: initial;
}
.follow-cta .contact__btn .contact-btn__circle {
  left: 1rem;
}
.follow-cta .contact__btn.--phone, .follow-cta .contact__btn.--contact {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 1.125rem 1.1875rem 1.125rem 4rem;
}
.follow-cta .contact__btn-text {
  font-size: 1rem;
  font-weight: 700;
  white-space: nowrap;
}

.footer-cta {
  margin-top: 3.75rem;
  margin-bottom: -33.125rem;
  position: relative;
  z-index: 1;
  width: 21.375rem;
  max-width: 100%;
  margin-inline: auto;
  border-radius: 0.25rem;
  background: url(../img/webp/footer-cta-bg-sp.webp) no-repeat center center/cover;
}
@media (min-width: 787px) {
  .footer-cta {
    width: 75rem;
    border-radius: 1rem;
    background: url(../img/webp/footer-cta-bg-pc.webp) no-repeat center center/cover;
    margin-bottom: -28.125rem;
  }
}
.footer-cta .footer-cta__inner {
  padding: 1.5rem;
}
@media (min-width: 787px) {
  .footer-cta .footer-cta__inner {
    padding: 5rem;
  }
}
.footer-cta .footer-cta__title {
  white-space: nowrap;
  text-align: left;
}
.footer-cta .contact-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.875rem;
}
.footer-cta .contact__btn.--phone {
  width: 18.375rem;
  max-width: 100%;
  padding: 0.96875rem 4.5rem 0.96875rem 1.5rem;
  white-space: nowrap;
}
@media (min-width: 787px) {
  .footer-cta .contact__btn.--phone {
    width: 20.1875rem;
    padding: 1.09375rem 4.5rem 1.09375rem 2.5rem;
  }
}
.footer-cta .contact__btn.--phone .contact__btn-text {
  font-size: 0.875rem;
}
.footer-cta .contact__btn.--phone .contact__btn-tel {
  font-size: 1.75rem;
  letter-spacing: -0.03em;
}
@media (min-width: 787px) {
  .footer-cta .contact__btn.--phone .contact__btn-tel {
    font-size: 2rem;
  }
}
.footer-cta .contact__btn.--contact {
  width: 18.375rem;
  max-width: 100%;
  padding: 1.778125rem 4.5rem 1.778125rem 1.5rem;
}
@media (min-width: 787px) {
  .footer-cta .contact__btn.--contact {
    width: 20.1875rem;
    padding: 1.778125rem 4.5rem 1.778125rem 2.5rem;
  }
}
.footer-cta .contact__btn.--contact .contact__btn-text {
  font-size: 1.375rem;
  letter-spacing: 0.02em;
  line-height: 1.28;
}

.footer-cta__content {
  width: 65rem;
  max-width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 787px) {
  .footer-cta__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: initial;
  }
}

.footer-cta__textarea {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.5rem;
}

.footer-cta__body {
  letter-spacing: 0.05em;
}

.footer-cta__subtitle {
  background: -webkit-gradient(linear, left top, right top, from(#3990FF), to(#196FDD));
  background: linear-gradient(to right, #3990FF, #196FDD);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  line-height: 1.28;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
}
@media (min-width: 787px) {
  .footer-cta__subtitle {
    font-size: 1.5rem;
  }
}

.footer-cta__text {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.6;
  margin-top: 1rem;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media (min-width: 787px) {
  .footer-cta__text {
    -webkit-font-feature-settings: initial;
            font-feature-settings: initial;
  }
}

.footer {
  position: relative;
  margin-top: 16.625rem;
  background: url(../img/svg/page-footer-bg.svg) no-repeat top center/cover;
}
@media (min-width: 787px) {
  .footer {
    background: url(../img/webp/footer-bg-pc.webp) no-repeat top right/cover;
  }
}
@media screen and (min-width: 787px) and (max-width: 1388px) {
  .footer {
    background: url(../img/webp/footer-bg-pc.webp) no-repeat top right/100% 100%;
  }
}
.home .footer {
  background: url(../img/webp/footer-bg-sp.webp) no-repeat top right/cover;
}
@media (min-width: 787px) {
  .home .footer {
    background: url(../img/webp/footer-bg-pc.webp) no-repeat top right/cover;
  }
}
@media screen and (min-width: 787px) and (max-width: 1388px) {
  .home .footer {
    background: url(../img/webp/footer-bg-pc.webp) no-repeat top right/100% 100%;
  }
}
.footer .footer__inner {
  padding: 24.375rem 1.5rem 6.25rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5rem;
}
@media (min-width: 787px) {
  .footer .footer__inner {
    padding: 20rem 7.5rem 2.5rem;
  }
}
.footer .address {
  font-style: normal;
  font-size: 0.9375rem;
  line-height: 1.6;
  font-weight: 500;
  letter-spacing: 0.02em;
}
@media (min-width: 787px) {
  .footer .address {
    letter-spacing: 0.05em;
    font-size: 1rem;
  }
}

.footer__content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5rem;
  width: 72.25rem;
  max-width: 100%;
  margin-inline: auto;
}
@media (min-width: 787px) {
  .footer__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.footer__info {
  width: 26.5rem;
  max-width: 100%;
  color: #FFF;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.5rem;
}

.footer__logo {
  display: block;
  width: 14.4375rem;
  height: 4rem;
}
.footer__logo img {
  width: 100%;
  height: 100%;
}

.address-map {
  margin-top: 0.25rem;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 5.6875rem;
  font-family: "Work Sans", sans-serif;
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1;
  border: 1px solid #FFF;
  border-radius: 3.125rem;
  padding: 0.5rem 1.5rem;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.25rem;
  margin-left: 0.3125rem;
  position: relative;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease;
}
@media (min-width: 787px) {
  .address-map {
    padding: 0.1875rem 1rem;
    width: 4.6875rem;
    margin-top: initial;
  }
}
.address-map::after {
  content: "";
  display: block;
  width: 0.625rem;
  height: 0.6875rem;
  aspect-ratio: 1;
  background-image: url(../img/svg/link-icon-white.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  -webkit-transition: background-image 0.3s ease;
  transition: background-image 0.3s ease;
}
@media (any-hover: hover) {
  .address-map:hover {
    background-color: #FFF;
    color: #196FDD;
  }
  .address-map:hover::after {
    background-image: url(../img/svg/link-icon-blue.svg);
  }
}

.footer__list {
  margin-top: 1rem;
  color: #FFF;
  font-size: 1.125rem;
  line-height: 1.28;
  font-weight: 700;
  letter-spacing: 0.05em;
  font-family: "Work Sans", sans-serif;
}
@media (min-width: 787px) {
  .footer__list {
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 500;
  }
}

.footer__message {
  background: rgba(255, 255, 255, 0.96);
  padding: 1rem;
  border-radius: 0.25rem;
}

.footer__message-title {
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 1.28;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #FFF;
  text-align: left;
  padding: 0.5rem 2.03125rem 0.5rem 5.5rem;
  background: -webkit-gradient(linear, left top, right top, from(#3990FF), to(#196FDD));
  background: linear-gradient(to right, #3990FF 0%, #196FDD 100%);
  border-radius: 3.125rem;
  position: relative;
  white-space: nowrap;
}
@media (min-width: 787px) {
  .footer__message-title {
    padding: 0.5rem 1.5rem 0.5rem 5rem;
    text-align: center;
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 500;
    letter-spacing: 0;
  }
}
.footer__message-title::before {
  content: "";
  display: block;
  width: 3.625rem;
  height: 3.1875rem;
  background: url(../img/webp/guide.webp) no-repeat center center/contain;
  position: absolute;
  bottom: 0;
  left: 0.875rem;
}
@media (min-width: 787px) {
  .footer__message-title::before {
    width: 3.375rem;
    height: 3rem;
  }
}

.footer__message-text {
  color: #252D3E;
  font-size: 0.875rem;
  font-weight: 500;
  margin-top: 1rem;
  padding-inline: 0.5rem;
  line-height: 1.6;
}

.footer__menu {
  color: #FFF;
  font-weight: 500;
  max-width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3.5rem;
}
@media (min-width: 787px) {
  .footer__menu {
    gap: 2.5rem;
    width: 40.75rem;
  }
}

.footer__nav {
  border-bottom: 0.25rem dotted #D2E2F8;
  padding-bottom: 3.5rem;
}
@media (min-width: 787px) {
  .footer__nav {
    padding-bottom: 2.25rem;
  }
}

.footer__nav-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 3.125rem;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media (min-width: 787px) {
  .footer__nav-list {
    gap: 4rem;
  }
}

.footer__nav-item {
  font-weight: 500;
  line-height: 1.25;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3rem;
}

.footer__nav-head {
  font-size: 1.125rem;
  line-height: 1.28;
  letter-spacing: 0.05em;
  font-weight: 700;
  position: relative;
}
@media (min-width: 787px) {
  .footer__nav-head {
    white-space: nowrap;
    font-size: 1.25rem;
    font-weight: 500;
  }
}
.footer__nav-head::after {
  content: "";
  width: 100%;
  height: 1px;
  background: #FFF;
  position: absolute;
  bottom: -1.5rem;
  left: 0;
}
@media (min-width: 787px) {
  .footer__nav-head::after {
    width: 1.5rem;
  }
}

.footer__nav-sub-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}

.footer__nav-sub-item {
  font-size: 0.875rem;
  line-height: 1.6;
  font-weight: 500;
}
@media (min-width: 787px) {
  .footer__nav-sub-item {
    line-height: 1.3;
    white-space: nowrap;
    font-size: 0.9375rem;
    letter-spacing: 0.04em;
  }
}

.footer__nav-sub-link {
  position: relative;
}
.footer__nav-sub-link::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  width: 100%;
  height: 1px;
  background: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#FFF));
  background: linear-gradient(#FFF, #FFF);
  background-size: 0 1px;
  background-repeat: no-repeat;
  background-position: right bottom;
  -webkit-transition: background-size 0.3s cubic-bezier(0.55, 0.05, 0.22, 0.99);
  transition: background-size 0.3s cubic-bezier(0.55, 0.05, 0.22, 0.99);
  will-change: background-size;
  z-index: 1;
}
@media (any-hover: hover) {
  .footer__nav-sub-link:hover {
    opacity: 1;
  }
  .footer__nav-sub-link:hover::before {
    background-size: 100% 1px;
    background-position: left bottom;
  }
}

.footer__branch {
  font-weight: 500;
  line-height: 1.25;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3rem;
}

.footer__branch-head {
  font-size: 1.125rem;
  line-height: 1.28;
  letter-spacing: 0.05em;
  position: relative;
  font-weight: 700;
}
@media (min-width: 787px) {
  .footer__branch-head {
    font-size: 1.25rem;
    font-weight: 500;
  }
}
.footer__branch-head::after {
  content: "";
  width: 1.5rem;
  height: 1px;
  background: #FFF;
  position: absolute;
  bottom: -1.5rem;
  left: 0;
}

.footer__branch-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 1rem;
  font-size: 0.875rem;
  line-height: 1.6;
  font-weight: 500;
}
@media (min-width: 787px) {
  .footer__branch-list {
    font-size: 0.9375rem;
    letter-spacing: 0.04em;
  }
}

.footer__branch-link {
  letter-spacing: 0.04em;
  position: relative;
}
.footer__branch-link::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  width: 100%;
  height: 1px;
  background: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#FFF));
  background: linear-gradient(#FFF, #FFF);
  background-size: 0 1px;
  background-repeat: no-repeat;
  background-position: right bottom;
  -webkit-transition: background-size 0.3s cubic-bezier(0.55, 0.05, 0.22, 0.99);
  transition: background-size 0.3s cubic-bezier(0.55, 0.05, 0.22, 0.99);
  will-change: background-size;
  z-index: 1;
}
@media (any-hover: hover) {
  .footer__branch-link:hover {
    opacity: 1;
  }
  .footer__branch-link:hover::before {
    background-size: 100% 1px;
    background-position: left bottom;
  }
}

.footer__copyright {
  color: #FFF;
  text-align: left;
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.28;
}
@media (min-width: 787px) {
  .footer__copyright {
    font-size: 0.75rem;
    letter-spacing: 0.02em;
    text-align: center;
  }
}

.fv {
  position: relative;
  overflow: hidden;
}

.fv__bg {
  width: 100%;
  height: 42.5rem;
  position: relative;
}
@media (min-width: 787px) {
  .fv__bg {
    height: 44.125rem;
  }
}
.fv__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.fv__bg::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 12.5rem;
  background: url(../img/webp/fv-building.webp) repeat-x bottom center/contain;
}

.fv__inner {
  position: absolute;
  bottom: 0;
  left: 50%;
  translate: -50%;
  width: 100%;
  max-width: 100%;
}
@media (min-width: 787px) {
  .fv__inner {
    width: 70rem;
  }
}

.fv__main {
  margin-inline: auto;
  max-width: 100%;
  width: 21.625rem;
  height: 20.375rem;
}
@media (min-width: 787px) {
  .fv__main {
    width: 70rem;
    height: 18.625rem;
  }
}
.fv__main img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.fv__people {
  margin-inline: auto;
  max-width: 100%;
  width: 24.375rem;
  height: 21.3125rem;
}
@media (min-width: 787px) {
  .fv__people {
    width: 70rem;
    height: 32.25rem;
    margin-top: -10.625rem;
  }
}
.fv__people img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.header {
  width: 100%;
  background: #FFF;
}
.header .header__inner {
  padding-inline: 1.5rem 2rem;
  padding-block: 1rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 787px) {
  .header .header__inner {
    padding-inline: 4rem;
    padding-block: 1rem;
  }
}
.header .contact-wrap {
  display: none;
}
@media (min-width: 787px) {
  .header .contact-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 0.5rem;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.header__logo {
  display: block;
  width: 10.8125rem;
}
@media (min-width: 787px) {
  .header__logo {
    width: 15.75rem;
  }
}
.header__logo img {
  width: 100%;
  height: 100%;
}
.header__logo a {
  display: block;
  width: 100%;
  height: 100%;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  .header__logo a:hover {
    opacity: 0.7;
  }
}

.icon-mask {
  position: relative;
  z-index: 2;
  scale: 1;
  -webkit-transition: scale 0.54s cubic-bezier(0.55, 0.05, 0.22, 0.99) 0s;
  transition: scale 0.54s cubic-bezier(0.55, 0.05, 0.22, 0.99) 0s;
}
.icon-mask.icon-mail {
  position: relative;
  display: inline-block;
  aspect-ratio: 1/1;
  z-index: 2;
  -webkit-transition: scale 0.54s cubic-bezier(0.55, 0.05, 0.22, 0.99);
  transition: scale 0.54s cubic-bezier(0.55, 0.05, 0.22, 0.99);
  -webkit-mask-image: url(../img/svg/mail-icon.svg);
          mask-image: url(../img/svg/mail-icon.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: #fff;
}
.icon-mask.icon-phone {
  position: relative;
  display: inline-block;
  aspect-ratio: 1/1;
  z-index: 2;
  -webkit-transition: scale 0.54s cubic-bezier(0.55, 0.05, 0.22, 0.99);
  transition: scale 0.54s cubic-bezier(0.55, 0.05, 0.22, 0.99);
  -webkit-mask-image: url(../img/svg/phone-icon.svg);
          mask-image: url(../img/svg/phone-icon.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
}

.icon-phone {
  background-image: url(../img/svg/phone-icon.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  position: relative;
  z-index: 2;
  width: 1.125rem;
  height: 1.3125rem;
}

.icon-mail {
  background-image: url(../img/svg/mail-icon.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  position: relative;
  z-index: 2;
  width: 1.75rem;
  height: 0.9375rem;
}

.contact__btn-text {
  font-size: 0.75rem;
  font-weight: 700;
  position: relative;
  z-index: 2;
}

.contact__btn-tel {
  font-size: 1.875rem;
  letter-spacing: -0.03em;
  font-weight: 400;
  font-family: "Work Sans", sans-serif;
  line-height: 1;
  position: relative;
  z-index: 2;
}

.contact__btn {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  border-radius: 6.25rem;
  color: #FFF;
  padding: 0.59375rem 4.5rem 0.59375rem 2rem;
  z-index: 2;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.contact__btn::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  border-radius: 6.25rem;
  opacity: 1;
  -webkit-transition: opacity 1s ease;
  transition: opacity 1s ease;
}
.contact__btn.--phone {
  width: 18.875rem;
  background: -webkit-gradient(linear, left top, right top, from(#196FDD), to(#3990FF));
  background: linear-gradient(to right, #196FDD, #3990FF);
}
.contact__btn.--phone::after {
  background: -webkit-gradient(linear, left top, right top, from(#3990FF), to(#196FDD));
  background: linear-gradient(to right, #3990FF, #196FDD);
}
.contact__btn.--phone .contact-btn__circle::after {
  background: -webkit-gradient(linear, left top, right top, from(#3990FF), to(#196FDD));
  background: linear-gradient(to right, #3990FF, #196FDD);
}
.contact__btn.--contact {
  width: 12.4375rem;
  padding: 1.34375rem 4.5rem 1.34375rem 2rem;
  background: linear-gradient(135deg, #F29600 0%, #FFBD4A 100%);
}
.contact__btn.--contact::after {
  background: linear-gradient(135deg, #FFBD4A 0%, #F29600 100%);
}
.contact__btn.--contact .contact__btn-text {
  font-size: 1rem;
  letter-spacing: -0.02em;
}
@media (min-width: 787px) {
  .contact__btn.--contact .contact__btn-text {
    white-space: nowrap;
  }
}
.contact__btn.--contact .contact-btn__circle::after {
  background: linear-gradient(135deg, #FFBD4A 0%, #F29600 100%);
}
.contact__btn .contact-btn__circle {
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  right: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  background: #fff;
  border-radius: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 2;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.contact__btn .contact-btn__circle::before, .contact__btn .contact-btn__circle::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  -webkit-transition: all 0.54s cubic-bezier(0.55, 0.05, 0.22, 0.99);
  transition: all 0.54s cubic-bezier(0.55, 0.05, 0.22, 0.99);
}
.contact__btn .contact-btn__circle::before {
  background-color: #fff;
  z-index: 0;
}
.contact__btn .contact-btn__circle::after {
  opacity: 0;
  z-index: 1;
  scale: 1;
}
@media (any-hover: hover) {
  .contact__btn:hover::after {
    opacity: 0;
  }
}

.sub-header {
  display: none;
}
@media (min-width: 787px) {
  .sub-header {
    overflow: hidden;
    display: block;
    width: 100%;
    background: linear-gradient(135deg, #004098 0%, #3990FF 100%);
  }
  .sub-header .sub-header__inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.5rem;
    padding-block: 1rem;
  }
}
@media screen and (min-width: 787px) and (min-width: 1360px) {
  .sub-header .sub-header__inner {
    -webkit-box-orient: initial;
    -webkit-box-direction: initial;
    -webkit-flex-direction: initial;
        -ms-flex-direction: initial;
            flex-direction: initial;
    gap: 0;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-block: initial;
  }
}

.sub-header__nav-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.sub-header__nav-list.--top .sub-header__nav-item:not(:first-child) a::before {
  content: "";
  display: block;
  width: 0.0625rem;
  height: 1rem;
  background: #B7C6D9;
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  left: 0;
}
.sub-header__nav-list.--bottom .sub-header__nav-item a::before {
  content: "";
  display: block;
  width: 0.0625rem;
  height: 1rem;
  background: #B7C6D9;
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  left: 0;
}
@media screen and (min-width: 1360px) {
  .sub-header__nav-list.--top, .sub-header__nav-list.--bottom {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
  }
}

.sub-header__nav-item {
  text-align: center;
}
.sub-header__nav-item a {
  position: relative;
  display: block;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: -0.04em;
  padding-inline: 1.5rem;
  color: #FFF;
  white-space: nowrap;
}
@media screen and (min-width: 1360px) {
  .sub-header__nav-item a {
    padding-block: 1rem;
  }
}
.sub-header__nav-item a .line {
  position: relative;
}
.sub-header__nav-item a .line::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  width: 100%;
  height: 1px;
  background: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#FFF));
  background: linear-gradient(#FFF, #FFF);
  background-size: 0 1px;
  background-repeat: no-repeat;
  background-position: right bottom;
  -webkit-transition: background-size 0.3s cubic-bezier(0.55, 0.05, 0.22, 0.99);
  transition: background-size 0.3s cubic-bezier(0.55, 0.05, 0.22, 0.99);
  will-change: background-size;
  z-index: 1;
}
@media (any-hover: hover) {
  .sub-header__nav-item a:hover {
    opacity: 1;
  }
  .sub-header__nav-item a:hover .line::before {
    background-size: 100% 1px;
    background-position: left bottom;
  }
}

/* hover アニメーション */
@media (hover: hover) and (pointer: fine) {
  .contact__btn.--contact:hover .contact-btn__circle::before,
  .contact__btn.--phone:hover .contact-btn__circle::before {
    scale: 0.8;
  }
  .contact__btn.--contact:hover .contact-btn__circle::after,
  .contact__btn.--phone:hover .contact-btn__circle::after {
    opacity: 1;
    scale: 0.12;
  }
  .contact__btn.--contact:hover .icon-mask.icon-mail,
  .contact__btn.--phone:hover .icon-mask.icon-phone {
    scale: 0;
  }
}
/* 残光のような “ふわっ” と戻る感 */
.contact__btn.--contact:not(:hover) .contact-btn__circle::after,
.contact__btn.--phone:not(:hover) .contact-btn__circle::after {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}

.drawer__icon {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 3rem;
  height: 3rem;
  z-index: 102;
  position: relative;
}
@media (min-width: 787px) {
  .drawer__icon {
    display: none;
  }
}
.drawer__icon::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: 3.125rem;
  background: linear-gradient(135deg, #004098 0%, #3990FF 100%);
  -webkit-mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)) content-box, -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: 2;
}

.drawer__icon-inner {
  width: 1.625rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.3125rem;
}

.drawer__icon-text {
  font-family: "Work Sans", sans-serif;
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  text-align: center;
  background: -webkit-gradient(linear, left top, right top, from(#004098), to(#3990FF));
  background: linear-gradient(to right, #004098, #3990FF);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}

.drawer__icon--bars {
  width: 1.125rem;
  height: 0.75rem;
  z-index: 3;
  position: relative;
}

.drawer__icon--bar {
  position: absolute;
  left: 50%;
  translate: -50%;
  width: 1.125rem;
  height: 2px;
  border-radius: 0.125rem;
  background: linear-gradient(135deg, #004098 0%, #3990FF 100%);
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.4s ease;
  transition: transform 0.4s ease, opacity 0.3s ease;
  transition: transform 0.4s ease, opacity 0.3s ease, -webkit-transform 0.4s ease;
  -webkit-transform-origin: center;
          transform-origin: center;
}
@media screen and (min-width: 450px) and (max-width: 550px) {
  .drawer__icon--bar {
    height: 3px;
  }
}
@media screen and (min-width: 551px) and (max-width: 786px) {
  .drawer__icon--bar {
    height: 4px;
  }
}
.drawer__icon--bar:nth-of-type(1) {
  top: 0;
}
.drawer__icon--bar:nth-of-type(2) {
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}
.drawer__icon--bar:nth-of-type(3) {
  bottom: 0;
}

.drawer__icon.js-show .drawer__icon--bar:nth-of-type(1) {
  rotate: 45deg;
  top: 0.3125rem;
}
.drawer__icon.js-show .drawer__icon--bar:nth-of-type(2) {
  display: none;
}
.drawer__icon.js-show .drawer__icon--bar:nth-of-type(3) {
  rotate: -45deg;
  bottom: 0.3125rem;
}

.header.js-show {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 200;
  overflow: auto;
  scrollbar-gutter: stable;
}

.drawer {
  position: fixed;
  z-index: 101;
  top: 5rem;
  right: 0;
  width: 100%;
  height: calc(100vh - 5rem);
  height: calc(100svh - 5rem);
  background: url(../img/webp/drawer-bg.webp) no-repeat left center/cover;
  overflow-y: scroll;
  scrollbar-width: none !important;
}

.drawer__body {
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding-block: clamp(3.75rem, 9.125rem, 15vh) 7.3125rem;
  padding-left: 2.5rem;
}

.drawer__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 3.25rem;
     -moz-column-gap: 3.25rem;
          column-gap: 3.25rem;
}

.drawer__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 1.5rem;
}
.drawer__list li a {
  color: #FFF;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: -0.04em;
  border-bottom: 0.0625rem solid rgba(255, 255, 255, 0.42);
  padding-bottom: 0.25rem;
}

.drawer {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.drawer.js-show {
  opacity: 1;
  visibility: visible;
}

.inner {
  width: 100%;
  padding-inline: 1.25rem;
  margin-inline: auto;
}
@media (min-width: 787px) {
  .inner {
    max-width: 1300px;
    padding-inline: 1.5625rem;
  }
}

.introduction-point {
  padding-block: 8.4375rem 5rem;
}

.introduction-point__inner {
  width: 75rem;
  max-width: 100%;
  margin-inline: auto;
}

.introduction-point__box {
  padding: 3.5rem 1.5rem;
  position: relative;
}
@media (min-width: 787px) {
  .introduction-point__box {
    padding: 3.5rem 2.5rem;
  }
}
.introduction-point__box.--good {
  margin-top: 12rem;
  background: #ECF6FD;
}
.introduction-point__box.--good::before {
  content: "";
  position: absolute;
  left: 50%;
  translate: -50%;
  top: -2.5%;
  width: 15rem;
  height: 15rem;
  border-radius: 100vmax;
  background: #ECF6FD;
  z-index: -1;
}
@media (min-width: 787px) {
  .introduction-point__box.--good::before {
    width: 24.0625rem;
    height: 24.0625rem;
    top: -10%;
  }
}
.introduction-point__box.--good::after {
  content: "";
  position: absolute;
  left: 50%;
  translate: -50%;
  top: -1.875rem;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 100vmax;
  background: url(../img/webp/gradation-check-icon.webp) no-repeat center center/cover;
}
@media (min-width: 787px) {
  .introduction-point__box.--good::after {
    width: 4.125rem;
    height: 4.125rem;
    top: -3%;
  }
}

.introduction-point__box.--bad {
  background: #FDE9E8;
  margin-top: 1.5rem;
  padding-block: 8rem 3.5rem;
}
@media (min-width: 787px) {
  .introduction-point__box.--bad {
    padding-block: 3.5rem;
  }
}
.introduction-point__box.--bad .introduction-point__title {
  color: #BF4741;
  position: relative;
}
@media (min-width: 787px) {
  .introduction-point__box.--bad .introduction-point__title {
    text-indent: 2.8125rem;
  }
}
.introduction-point__box.--bad .introduction-point__title::before {
  content: "";
  position: absolute;
  top: -4.6875rem;
  translate: -50%;
  left: 50%;
  width: 3.5rem;
  height: 3.5rem;
  background: url(../img/webp/bad-icon.webp) no-repeat center center/contain;
}
@media (min-width: 787px) {
  .introduction-point__box.--bad .introduction-point__title::before {
    top: 50%;
    translate: 0 -50%;
    left: -1.375rem;
    width: 3.25rem;
    height: 3.25rem;
  }
}
.introduction-point__box.--bad .introduction-point__item-top {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  padding-left: 0.625rem;
}
.introduction-point__box.--bad .introduction-point__item-top::before {
  content: "";
  position: absolute;
  left: -1.5625rem;
  top: 50%;
  translate: 0 -50%;
  width: 1.5625rem;
  height: 1.5625rem;
  background: url(../img/webp/bad-icon.webp) no-repeat center center/contain;
}
.introduction-point__box.--bad .introduction-point__items {
  -ms-grid-columns: (1fr)[1];
  grid-template-columns: repeat(1, 1fr);
}
@media (min-width: 787px) {
  .introduction-point__box.--bad .introduction-point__items {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
    -ms-grid-rows: initial;
    grid-template-rows: initial;
  }
}
.introduction-point__box.--bad .introduction-point__item {
  height: 14.1875rem;
  padding: 1.5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
.introduction-point__box.--bad .introduction-point__item-title {
  color: #BF4741;
}

.introduction-point__title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  color: #3990FF;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: 0.05em;
}
@media (min-width: 787px) {
  .introduction-point__title {
    font-size: 2rem;
    line-height: 1.2;
  }
}

.introduction-point__items {
  margin-top: 3rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[1];
  grid-template-columns: repeat(1, 1fr);
  gap: 1rem;
}
@media (min-width: 787px) {
  .introduction-point__items {
    -ms-grid-columns: (1fr)[4];
    grid-template-columns: repeat(4, 1fr);
    -ms-grid-rows: 26.875rem 25rem;
    grid-template-rows: 26.875rem 25rem;
  }
}

.introduction-point__item {
  background: #FFF;
  padding: 1.5rem;
  border-radius: 0.125rem;
}
@media (min-width: 787px) {
  .introduction-point__item {
    padding: 1.5rem 1rem;
  }
}

.introduction-point__item-top {
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.28;
  color: #B7C6D9;
  font-family: "Work Sans", sans-serif;
  position: relative;
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.25rem;
}
@media (min-width: 787px) {
  .introduction-point__item-top {
    gap: 0.375rem;
  }
}
.introduction-point__item-top::before {
  content: "";
  display: block;
  width: 1.5625rem;
  height: 1.5625rem;
  background: url(../img/webp/gradation-check-icon.webp) no-repeat center center/contain;
}

.introduction-point__item-img {
  width: 12.5rem;
  height: 7.75rem;
  margin-inline: auto;
  margin-block: 0.4375rem;
  max-width: 100%;
}
.introduction-point__item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.introduction-point__item-body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}

.introduction-point__item-title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: 0.05em;
  color: #196FDD;
  text-align: center;
}

.introduction-point__item-text {
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: #252D3E;
  text-align: justify;
}

.introduction-point__item-block {
  background: #ECF6FD;
  padding: 0.625rem;
  border-radius: 0.125rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.25rem;
  text-align: center;
}

.introduction-point__item-block-head {
  font-size: 0.875rem;
  font-weight: 700;
  color: #196FDD;
}

.introduction-point__item-block-text {
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: #196FDD;
}

.top-introduction {
  padding-block: 5rem;
  background: url(../img/webp/top-introduction-bg-pc.webp) no-repeat left -21.25rem center/cover;
}
@media (min-width: 787px) {
  .top-introduction {
    padding-block: 6.25rem 8.8125rem;
    background: url(../img/webp/top-introduction-bg-pc.webp) no-repeat center center/cover;
  }
}

.top-introduction__inner {
  width: 65rem;
  max-width: 100%;
  margin-inline: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3rem;
  text-align: center;
}

.top-introduction__lead {
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.02em;
}

.top-introduction__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[1];
  grid-template-columns: repeat(1, 1fr);
  gap: 1rem;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media (min-width: 787px) {
  .top-introduction__list {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
    gap: 2.75rem;
  }
}

.top-introduction__item-img {
  width: 16.25rem;
  max-width: 100%;
  aspect-ratio: 263/146;
  overflow: hidden;
  border-radius: 0.125rem;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
@media (min-width: 787px) {
  .top-introduction__item-img {
    width: 16.4375rem;
    max-width: 100%;
    aspect-ratio: 263/148;
  }
}
.top-introduction__item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  will-change: transform;
}

.top-introduction__item-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #196FDD;
  line-height: 1.28;
  letter-spacing: 0.05em;
}

.top-introduction__item-text {
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.02em;
  text-align: left;
  margin-top: 1rem;
  text-align: justify;
}

.top-introduction__item-btn {
  width: 15.3125rem;
  max-width: 100%;
  margin-inline: auto;
}

.top-introduction__btn {
  margin-inline: auto;
}
.top-introduction__btn .section-btn {
  width: 19.375rem;
}
@media (min-width: 787px) {
  .top-introduction__btn .section-btn {
    width: 20.875rem;
  }
}
.top-introduction__btn .btn-text {
  text-indent: initial;
}

.top-introduction__item {
  width: 19.375rem;
  max-width: 100%;
  margin-inline: auto;
  padding: 1.5rem;
  background: #FFF;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  position: relative;
  border-radius: 0.25rem;
}
@media (min-width: 787px) {
  .top-introduction__item {
    width: initial;
    margin-inline: initial;
  }
}
.top-introduction__item::after {
  content: "";
  position: absolute;
  top: 1.5rem;
  right: -1.25rem;
  width: 2.5rem;
  height: 5.625rem;
  background: url(../img/webp/card-decoration-01.webp) no-repeat center center/cover;
}
.top-introduction__item:nth-child(2)::after {
  background: url(../img/webp/card-decoration-02.webp) no-repeat center center/cover;
}
.top-introduction__item:nth-child(3)::after {
  background: url(../img/webp/card-decoration-03.webp) no-repeat center center/cover;
}
@media (any-hover: hover) {
  .top-introduction__item:hover .top-introduction__item-img img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  .top-introduction__item:hover .gradation-btn1 {
    color: #FFF;
    position: relative;
    overflow: hidden;
  }
  .top-introduction__item:hover .gradation-btn1::after {
    width: 100%;
  }
  .top-introduction__item:hover .gradation-btn1 span {
    background: -webkit-gradient(linear, left top, right top, from(#3990FF), to(#196FDD));
    background: linear-gradient(to right, #3990FF, #196FDD);
    -webkit-background-clip: text;
            background-clip: text;
    color: transparent;
  }
  .top-introduction__item:hover .gradation-btn1 span::after {
    background: -webkit-gradient(linear, left top, right top, from(#3990FF), to(#196FDD));
    background: linear-gradient(to right, #3990FF, #196FDD);
  }
}
.top-introduction__item:not(:hover) .gradation-btn1::after {
  width: 0;
  -webkit-transition: width 0.3s ease-in-out;
  transition: width 0.3s ease-in-out;
}

.maker {
  padding-block: 8.4375rem 5rem;
}
@media (min-width: 787px) {
  .maker {
    padding-block: 9.8125rem 6.25rem;
  }
}

.maker__inner {
  padding-inline: 0.5rem;
  max-width: 100%;
  margin-inline: auto;
}
@media (min-width: 787px) {
  .maker__inner {
    padding-inline: 0;
    width: 70rem;
  }
}

.maker__items {
  margin-top: 4.875rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}
@media (min-width: 787px) {
  .maker__items {
    margin-top: 5.375rem;
    -ms-grid-columns: (1fr)[4];
    grid-template-columns: repeat(4, 1fr);
    gap: 1.375rem;
  }
}

.maker__item {
  background: #f4f6f8;
  border-radius: 0.25rem;
  padding: 1rem 0.5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 787px) {
  .maker__item {
    padding: 1.25rem;
    gap: 1.25rem;
  }
}

.maker__item-img {
  width: 100%;
  max-width: 100%;
  height: 6.25rem;
}
@media (min-width: 787px) {
  .maker__item-img {
    width: 13.9375rem;
    height: 6.0625rem;
  }
}
.maker__item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.maker__item-text {
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.6;
  text-align: center;
}
@media (min-width: 787px) {
  .maker__item-text {
    font-size: 1.1875rem;
    line-height: 1.3;
  }
}

.news {
  padding-block: 2.5rem 5rem;
}
@media (min-width: 787px) {
  .news {
    padding-block: 6.25rem;
  }
}

.news__inner {
  width: 100%;
  max-width: 100%;
  padding-inline: 1.5rem;
  margin-inline: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.5rem;
}
@media (min-width: 787px) {
  .news__inner {
    width: 70rem;
    padding-inline: initial;
    gap: 5rem;
  }
}

.newa__item:first-child .news__item-link {
  padding-top: 0;
}

.news__item-link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 1.125rem;
  position: relative;
  padding-bottom: 1.5rem;
  padding-top: 2.5rem;
  border-bottom: 1px solid #D3D5D8;
}
@media (min-width: 787px) {
  .news__item-link {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 2.625rem;
    padding-bottom: 2.5rem;
  }
}
@media (any-hover: hover) {
  .news__item-link:hover .circle {
    width: 3.5rem;
    height: 3.5rem;
    -webkit-transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1), height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1), height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .news__item-link:hover .circle::after {
    opacity: 1;
    -webkit-transition: opacity 0.3s ease 0.15s;
    transition: opacity 0.3s ease 0.15s;
  }
}

.news__circle-wrapper-pc {
  display: none;
}
@media (min-width: 787px) {
  .news__circle-wrapper-pc {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    position: absolute;
    bottom: 1.5625rem;
    right: 0;
    z-index: 1;
    -webkit-box-shadow: none;
            box-shadow: none;
    background: #F5F5F5;
    right: 2rem;
    top: 50%;
    translate: 0 -50%;
    bottom: initial;
  }
}
.news__circle-wrapper-pc .circle {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: -webkit-gradient(linear, left top, right top, from(#3990FF), to(#196FDD));
  background: linear-gradient(to right, #3990FF, #196FDD);
  -webkit-transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1), height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1), height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.news__circle-wrapper-pc .circle::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 0.5rem;
  height: 0.5rem;
  background: #fff;
  border-radius: 50%;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.news__meta {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}
@media (min-width: 787px) {
  .news__meta {
    width: 11.875rem;
    max-width: 100%;
  }
}

.news__category {
  color: #196FDD;
  font-weight: 500;
  font-size: 0.75rem;
  line-height: 1.8;
  border: 1px solid #196FDD;
  border-radius: 1.25rem;
  padding: 0.25rem 1rem;
}

.newa__date {
  color: #A4AAB2;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.4;
  font-family: "Work Sans", sans-serif;
  letter-spacing: -0.02em;
}

.news__body {
  width: 100%;
}
@media (min-width: 787px) {
  .news__body {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 44.5rem;
        -ms-flex: 0 0 44.5rem;
            flex: 0 0 44.5rem;
    width: initial;
  }
}

.news__item-title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  color: #196FDD;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.28;
}
@media (min-width: 787px) {
  .news__item-title {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    line-height: 1.8;
    gap: 1rem;
  }
}
.news__item-title .tag {
  color: #FFF;
  background: #196FDD;
  font-size: 0.625rem;
  font-weight: 400;
  line-height: 1.3;
  font-family: "Work Sans", sans-serif;
  border-radius: 0.25rem;
  padding-block: 0.075rem;
  padding-inline: 0.25rem;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  display: inline-block;
}
@media (min-width: 787px) {
  .news__item-title .tag {
    margin-top: 0.71875rem;
    padding-inline: 0.125rem;
    line-height: 1.4;
  }
}
.news__item-title .tag--hidden {
  visibility: hidden;
}

.news__item-text {
  position: relative;
  margin-top: 1rem;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.6;
  padding-right: 4.5rem;
  text-align: justify;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 4.8em;
}
@media (min-width: 787px) {
  .news__item-text {
    margin-top: 0.5rem;
    line-height: 1.8;
    min-height: initial;
  }
}

.news__circle-wrapper-sp {
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  right: 0;
  z-index: 1;
  -webkit-box-shadow: none;
          box-shadow: none;
  background: #F5F5F5;
}
.news__circle-wrapper-sp .circle {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: -webkit-gradient(linear, left top, right top, from(#3990FF), to(#196FDD));
  background: linear-gradient(to right, #3990FF, #196FDD);
  -webkit-transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1), height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1), height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.news__circle-wrapper-sp .circle::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 0.5rem;
  height: 0.5rem;
  background: #fff;
  border-radius: 50%;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media (min-width: 787px) {
  .news__circle-wrapper-sp {
    display: none;
  }
}

.other-news {
  background: #F4F6F8;
  padding-block: 5rem;
}
@media (min-width: 787px) {
  .other-news {
    padding-block: 6.25rem;
  }
}

.other-news__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3.5rem;
  width: 100%;
  max-width: 100%;
  margin-inline: auto;
  padding-inline: 1.5rem;
}
@media (min-width: 787px) {
  .other-news__inner {
    width: 70rem;
    padding-inline: initial;
  }
}

.other-news__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
}

.other-news__item {
  background: #FFF;
  border-radius: 0.25rem;
  width: 21.375rem;
  max-width: 100%;
  margin-inline: auto;
  padding: 1.5rem;
}
@media (min-width: 787px) {
  .other-news__item {
    width: initial;
    margin-inline: initial;
    padding: initial;
  }
}
.other-news__item .other-news__circle-wrapper-sp {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-shadow: none;
          box-shadow: none;
  background: #F5F5F5;
}
@media (min-width: 787px) {
  .other-news__item .other-news__circle-wrapper-sp {
    display: none;
  }
}

.other-news__item-link {
  display: contents;
}
@media (min-width: 787px) {
  .other-news__item-link {
    pointer-events: initial;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 2rem;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: relative;
    gap: 1.5rem;
  }
}
@media (min-width: 787px) and (any-hover: hover) {
  .other-news__item-link:hover .other-news__item-img img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  .other-news__item-link:hover .circle {
    width: 3.5rem;
    height: 3.5rem;
    -webkit-transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1), height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1), height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .other-news__item-link:hover .circle::after {
    opacity: 1;
    -webkit-transition: opacity 0.3s ease 0.15s;
    transition: opacity 0.3s ease 0.15s;
  }
}
.other-news__item-link .other-news__circle-wrapper {
  display: none;
}
@media (min-width: 787px) {
  .other-news__item-link .other-news__circle-wrapper {
    background: #F5F5F5;
    -webkit-box-shadow: none;
            box-shadow: none;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    position: absolute;
    top: 50%;
    translate: 0 -50%;
    right: 2rem;
    z-index: 1;
  }
}

.other-news__item-inner {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5rem;
}
@media (min-width: 787px) {
  .other-news__item-inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.other-news__item-img {
  width: 18.375rem;
  max-width: 100%;
  border-radius: 0.125rem;
  overflow: hidden;
  aspect-ratio: 294/165;
  overflow: hidden;
}
@media (min-width: 787px) {
  .other-news__item-img {
    width: 16.25rem;
    aspect-ratio: 260/146;
  }
}
.other-news__item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  will-change: transform;
}

.other-news__item-body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  text-align: start;
}
@media (min-width: 787px) {
  .other-news__item-body {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 42.25rem;
        -ms-flex: 0 0 42.25rem;
            flex: 0 0 42.25rem;
  }
}
.other-news__item-body .meta {
  display: none;
}
@media (min-width: 787px) {
  .other-news__item-body .meta {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1rem;
    width: 13.4375rem;
    max-width: 100%;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.other-news__item-body .meta-category {
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.8;
  color: #196FDD;
  border: 1px solid #196FDD;
  border-radius: 1.25rem;
  padding: 0.25rem 1rem;
}
.other-news__item-body .meta-date {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4;
  font-family: "Work Sans", sans-serif;
  letter-spacing: -0.02em;
  color: #A4AAB2;
}

.other-news__item-text-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}
@media (min-width: 787px) {
  .other-news__item-text-wrap {
    display: contents;
  }
}
.other-news__item-text-wrap .other-news__item-text {
  width: 13.875rem;
  max-width: 100%;
}
@media (min-width: 787px) {
  .other-news__item-text-wrap .other-news__item-text {
    width: 100%;
  }
}

.other-news__item-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #196FDD;
  line-height: 1.28;
  letter-spacing: 0.05em;
}
.other-news__item-text {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.02em;
}
@media (min-width: 787px) {
  .other-news__item-text {
    font-size: 0.9375rem;
    line-height: 1.8;
  }
}

.other-news__btn .section-btn {
  -webkit-box-shadow: none;
          box-shadow: none;
  background: #FFF;
  width: 16.875rem;
  height: 3.375rem;
  margin-inline: auto;
}
.other-news__btn .btn-text {
  text-indent: -1.25rem;
}

.page-404 {
  padding-block: 6.25rem 5rem;
}

.page-404__inner {
  width: 60rem;
  max-width: 100%;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.page-404__content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3.125rem;
  text-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 787px) {
  .page-404__content {
    gap: 2.5rem;
  }
}

.page-404__title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.05em;
  background: -webkit-gradient(linear, left top, right top, from(#3990FF), to(#196FDD));
  background: linear-gradient(to right, #3990FF, #196FDD);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
@media (min-width: 787px) {
  .page-404__title {
    font-size: 2.5rem;
    line-height: 1.3;
  }
}

.page-404__text {
  font-size: 0.9375rem;
  line-height: 1.8;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #252D3E;
}
@media screen and (max-width: 786px) {
  .page-404__text {
    text-align: justify;
    -moz-text-align-last: left;
         text-align-last: left;
  }
}
@media (min-width: 787px) {
  .page-404__text {
    text-align: center;
  }
}
.page-404__text:nth-child(2) {
  margin-top: 1.5rem;
}
@media (min-width: 787px) {
  .page-404__text:nth-child(2) {
    margin-top: initial;
  }
}

.page-404__btn {
  width: 18.9375rem;
  max-width: 100%;
  margin-inline: auto;
}
@media (min-width: 787px) {
  .page-404__btn {
    margin-top: 0.625rem;
  }
}

.page-fv {
  background: url(../img/webp/page-fv-bg-2-sp.webp) no-repeat center center/cover;
  padding-block: 2.5rem;
  padding-inline: 1.5rem;
}
@media (min-width: 787px) {
  .page-fv {
    background: url(../img/webp/page-fv-bg-pc.webp) no-repeat center center/cover;
    padding-block: 2.375rem;
  }
}
.page-fv .page-fv__inner {
  width: 70rem;
  max-width: 100%;
  margin-inline: auto;
}
.page-fv .page-fv__inner.page-fv-blog__inner {
  width: 79.0625rem;
}
@media (min-width: 787px) {
  .page-fv .page-fv__inner.page-fv-blog__inner {
    padding-left: 6rem;
    margin-inline: initial;
    width: 79.0625rem;
  }
}
@media screen and (min-width: 1441px) {
  .page-fv .page-fv__inner.page-fv-blog__inner {
    margin-inline: auto;
    padding-left: 1.875rem;
  }
}
.page-fv .page-fv__inner.page-fv-news__inner {
  width: 60rem;
}
.page-fv .page-fv__inner.page-fv-works__inner {
  width: 75rem;
}
.page-fv .works__title {
  white-space: nowrap;
  background: linear-gradient(135deg, #004098 0%, #3990FF 100%);
  display: inline-block;
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}

.page-staff {
  background: url(../img/webp/page-fv-bg-2-sp.webp) no-repeat center center/cover;
}
@media (min-width: 787px) {
  .page-staff {
    background: url(../img/webp/page-staff-bg-pc.webp) no-repeat center center/cover;
  }
}

.page-company {
  background: url(../img/webp/page-fv-bg-2-sp.webp) no-repeat center center/cover;
}
@media (min-width: 787px) {
  .page-company {
    background: url(../img/webp/page-fv-bg-pc.webp) no-repeat center center/cover;
  }
}

.page-works {
  background: url(../img/webp/page-fv-bg-2-sp.webp) no-repeat center center/cover;
}
@media (min-width: 787px) {
  .page-works {
    background: url(../img/webp/page-fv-bg-pc.webp) no-repeat center center/cover;
  }
}

.page-subsidy {
  background: url(../img/webp/page-fv-bg-2-sp.webp) no-repeat center center/cover;
}
@media (min-width: 787px) {
  .page-subsidy {
    background: url(../img/webp/page-fv-bg-pc.webp) no-repeat center center/cover;
  }
}

.page-fv__desc {
  margin-top: 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #252D3E;
}

.page-fv__date {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.8;
  color: #252D3E;
}

.page-single .page-fv__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
}

.page-single__category-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 0.625rem;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 787px) {
  .page-single__category-wrap {
    gap: 0.625rem;
  }
}

.page-single__category-tag {
  border-radius: 0.25rem;
  border: 1px solid #196FDD;
  font-size: 0.75rem;
  font-weight: 500;
  color: #196FDD;
}
.page-single__category-tag a {
  display: block;
  padding: 0.25rem 1rem;
}

.page-fv-news__inner .page-single__category-tag a {
  pointer-events: none;
  cursor: default;
}

.page-single__category-date {
  font-size: 0.875rem;
  font-weight: 400;
  font-family: "Work Sans", sans-serif;
  letter-spacing: -0.02em;
  color: #A4AAB2;
}
@media (min-width: 787px) {
  .page-single__category-date {
    font-size: 0.75rem;
    padding-left: 0.625rem;
  }
}

.page-menu {
  background: #DFE9F3;
  padding-block: 1.5rem;
  padding-inline: 1.5rem;
}
@media (min-width: 787px) {
  .page-menu {
    padding-block: 1.25rem;
  }
}
.page-menu.--reason .page-menu__items {
  width: 100%;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 787px) {
  .page-menu.--reason .page-menu__items {
    width: 35rem;
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
}

.page-menu__items {
  width: 100%;
  max-width: 100%;
  margin-inline: auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[1];
  grid-template-columns: repeat(1, 1fr);
  gap: 0.5rem;
}
@media (min-width: 787px) {
  .page-menu__items {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
    width: 55.75rem;
  }
}

.page-menu__item {
  background: #FFF;
  border: 0.0625rem solid #9AACC6;
  border-radius: 0.25rem;
}
.page-menu__item a {
  padding: 0.9375rem 1rem 0.9375rem 1.875rem;
  color: #002E6E;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.02em;
  display: block;
  position: relative;
}
.page-menu__item a::after {
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  right: 0.875rem;
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  background: url(../img/svg/arrow-drop-down-icon.svg) no-repeat center center/cover;
}

.page-thanks {
  padding-block: 3.5rem;
  background: url(../img/webp/thanks-bg-sp.webp) no-repeat center center/cover;
}
@media (min-width: 787px) {
  .page-thanks {
    padding-block: 6.25rem 5rem;
    background: url(../img/webp/thanks-bg-pc.webp) no-repeat center center/cover;
  }
}

.page-thanks__inner {
  width: 60rem;
  max-width: 100%;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.page-thanks__content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
  text-align: center;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media (min-width: 787px) {
  .page-thanks__content {
    gap: 2.5rem;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.page-thanks__title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: 0.05em;
  background: -webkit-gradient(linear, left top, right top, from(#3990FF), to(#196FDD));
  background: linear-gradient(to right, #3990FF, #196FDD);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  text-align: left;
}
@media (min-width: 787px) {
  .page-thanks__title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.05em;
    text-align: center;
  }
}

.page-thanks__text {
  font-size: 0.9375rem;
  line-height: 1.6;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #252D3E;
  text-align: justify;
}
@media (min-width: 787px) {
  .page-thanks__text {
    text-align: center;
  }
}
.page-thanks__text:nth-child(2) {
  margin-top: 1rem;
}
@media (min-width: 787px) {
  .page-thanks__text:nth-child(2) {
    margin-top: 1.5rem;
  }
}

.page-thanks__btn {
  margin-inline: auto;
  width: 19.9375rem;
  max-width: 100%;
}
.page-thanks__btn .gradation-btn1 {
  padding-block: 1.5rem;
}
.page-thanks__btn .gradation-btn1 span {
  text-indent: -1.25rem;
}

.page-nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.3125rem;
  padding-inline: 1.5rem;
}
@media (min-width: 787px) {
  .page-nav {
    gap: 2rem;
  }
}

a.page-numbers,
span.page-numbers {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 0.8125rem;
  color: #252D3E;
  background-color: #F4F4F4;
  border: 1px solid #F4F4F4;
  width: 2.1875rem;
  height: 2.1875rem;
  border-radius: 100vmax;
  aspect-ratio: 1;
}
@media (min-width: 787px) {
  a.page-numbers,
  span.page-numbers {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1rem;
  }
}

span.page-numbers.dots {
  border: none;
  pointer-events: none;
  -webkit-transition: none;
  transition: none;
}

.prev.page-numbers,
.next.page-numbers {
  aspect-ratio: initial;
  border: none;
  margin: 0;
  background-color: transparent;
  white-space: nowrap;
  padding: 0;
  font-size: 0.75rem;
  color: #252D3E;
  font-weight: 700;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}
@media (min-width: 787px) {
  .prev.page-numbers,
  .next.page-numbers {
    font-size: 1rem;
  }
}

.prev.page-numbers {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.5rem;
}
.prev.page-numbers::before {
  content: "";
  rotate: 90deg;
  width: 0.625rem;
  aspect-ratio: 1;
  background: url(../img/svg/select-arrow.svg) no-repeat center center/contain;
}
@media (min-width: 787px) {
  .prev.page-numbers::before {
    width: 0.625rem;
  }
}

.next.page-numbers {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.625rem;
}
.next.page-numbers::after {
  content: "";
  rotate: -90deg;
  width: 0.625rem;
  aspect-ratio: 1;
  background: url(../img/svg/select-arrow.svg) no-repeat center center/contain;
}
@media (min-width: 787px) {
  .next.page-numbers::after {
    width: 0.625rem;
  }
}

.page-numbers.current {
  color: #FFF;
  background-color: #196FDD;
  border: 1px solid #196FDD;
}

a.page-numbers:not(.dots):not(.prev):not(.next) {
  -webkit-transition: color 0.3s ease, background-color 0.3s ease, border 0.3s ease;
  transition: color 0.3s ease, background-color 0.3s ease, border 0.3s ease;
}
@media (any-hover: hover) {
  a.page-numbers:not(.dots):not(.prev):not(.next):hover {
    color: #FFF;
    background-color: #196FDD;
    border: 1px solid #196FDD;
  }
}

.privacy {
  padding-block: 5rem 2.5rem;
  padding-inline: 1.5rem;
}
.privacy__inner {
  width: 60rem;
  max-width: 100%;
  margin-inline: auto;
}

.privacy__date {
  color: #6D7075;
  font-size: 0.875rem;
  font-weight: 400;
  text-align: right;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.privacy__title-wrap.--mt56 {
  margin-top: 3.5rem;
}
.privacy__title-wrap.--h2 {
  background: #ECF6FD;
  border-radius: 0.25rem;
}

h2.privacy__title,
h3.privacy__title,
h4.privacy__title {
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.28;
  background: -webkit-gradient(linear, left top, right top, from(#3990FF), to(#196FDD));
  background: linear-gradient(to right, #3990FF, #196FDD);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}

h2.privacy__title {
  font-size: 1.5rem;
  padding: 1rem 1.5rem;
}
@media (min-width: 787px) {
  h2.privacy__title {
    font-size: 2rem;
  }
}

h3.privacy__title {
  font-size: 1.5rem;
  padding-bottom: 2rem;
  position: relative;
}
h3.privacy__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: -webkit-gradient(linear, left top, right top, from(#3990FF), to(#196FDD));
  background: linear-gradient(to right, #3990FF, #196FDD);
}

h4.privacy__title {
  font-size: 1.25rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #D0D0D0;
  margin-top: 3.5rem;
  margin-bottom: 2rem;
}
h4.privacy__title.--mt32 {
  margin-top: 2rem;
}

.privacy__text.--gap24 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
}
.privacy__text.--gap32 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
}
.privacy__text.--mb32 {
  margin-bottom: 2rem;
}
.privacy__text.--mt32 {
  margin-top: 2rem;
}
.privacy__text.--mt56 {
  margin-top: 3.5rem;
}
.privacy__text.--align-right {
  margin-top: 2rem;
}
.privacy__text.--align-right p {
  text-align: right;
}
.privacy__text p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.02em;
  color: #252D3E;
  text-align: justify;
}

.privacy__box {
  background: #ECF6FD;
  padding: 1.5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
}

.privacy__box-head {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.02em;
  color: #252D3E;
}

.privacy__box-text {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.02em;
  color: #252D3E;
}

.privacy__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
.privacy__list li {
  padding-left: 1em;
  font-size: 1rem;
  line-height: 1.8;
  letter-spacing: 0.02em;
  color: #252D3E;
  position: relative;
}
.privacy__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6875rem;
  width: 0.5rem;
  height: 0.5rem;
  background: -webkit-gradient(linear, left top, right top, from(#3990FF), to(#196FDD));
  background: linear-gradient(to right, #3990FF, #196FDD);
  border-radius: 100vmax;
}

.privacy__text-blue {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  color: #196FDD !important;
}

.product {
  padding-block: 8.4375rem 5rem;
}
@media (min-width: 787px) {
  .product {
    padding-block: 9.625rem 6.25rem;
  }
}
.product.--solar-panel {
  background: #fbf6f0;
}
.product.--solar-panel .page__title {
  background: linear-gradient(135deg, #ffbd4a 0%, #f29600 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
.product.--solar-panel .page__title::before {
  background: url(../img/webp/energy-orange-icon.webp) no-repeat center center/cover;
}
.product.--solar-panel .page__title::after {
  background: -webkit-gradient(linear, left top, right top, from(#ffbd4a), to(#f29600));
  background: linear-gradient(to right, #ffbd4a 0%, #f29600 100%);
}
.product.--solar-panel .tabs__content-title {
  color: #f29600;
}
.product.--solar-panel .tabs__content-img p {
  background: #F29600;
}
.product.--storage-battery {
  background: #f4f6f8;
}
.product.--storage-battery .tabs__content-title {
  color: #388ffe;
}
@media (min-width: 787px) {
  .product.--storage-battery .tabs__list {
    border-bottom: 1px solid #9aacc6;
  }
}
.product.--storage-battery .tabs__item {
  border: 1px solid #9aacc6;
  color: #196FDD;
}
.product.--storage-battery .tabs__item[aria-selected=true] {
  background: #196fdd;
  color: #FFF;
}
.product.--storage-battery .tabs__content-img p {
  background: #388FFE;
}

.product__inner {
  width: 70rem;
  max-width: 100%;
  margin-inline: auto;
}

.tabs {
  margin-top: 4.75rem;
}
@media (min-width: 787px) {
  .tabs {
    margin-top: 6rem;
  }
}

.tabs__inner {
  padding-inline: 1.5rem;
  max-width: 100%;
  margin-inline: auto;
}
@media (min-width: 787px) {
  .tabs__inner {
    width: 70rem;
    padding-inline: 0;
  }
}

.tabs__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  row-gap: 0.5rem;
  -webkit-column-gap: 0.5rem;
     -moz-column-gap: 0.5rem;
          column-gap: 0.5rem;
}
@media (min-width: 787px) {
  .tabs__list {
    row-gap: 0;
    -webkit-column-gap: 0.9375rem;
       -moz-column-gap: 0.9375rem;
            column-gap: 0.9375rem;
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
    border-bottom: 1px solid #dec59b;
  }
}

.tabs__item {
  padding: 0.5rem 1.4375rem;
  border: 1px solid #dec59b;
  border-radius: 0.25rem;
  background: #FFF;
  color: #f29600;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.02em;
}
@media (min-width: 787px) {
  .tabs__item {
    width: 10rem;
    padding: 0.4375rem 1.875rem;
    border-bottom-width: 0;
    border-radius: 0.25rem 0.25rem 0 0;
  }
}
.tabs__item[aria-selected=true] {
  background: #f29600;
  color: #FFF;
  pointer-events: none;
}
.tabs__item[aria-selected=false] {
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  .tabs__item[aria-selected=false]:hover {
    cursor: pointer;
    opacity: 0.7;
  }
}

.tabs__content-wrap {
  opacity: 0;
  visibility: hidden;
  height: 0;
  translate: 0 20px;
  -webkit-transition: opacity 0.3s ease, translate 0.3s ease;
  transition: opacity 0.3s ease, translate 0.3s ease;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[1];
  grid-template-columns: repeat(1, 1fr);
  gap: 0.875rem;
}
@media (min-width: 787px) {
  .tabs__content-wrap {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
    gap: 2.1875rem;
  }
}
.tabs__content-wrap.js-show {
  opacity: 1;
  visibility: visible;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  translate: 0;
}

.tabs__contents {
  margin-top: 1rem;
  width: 70rem;
  max-width: 100%;
  margin-inline: auto;
}
@media (min-width: 787px) {
  .tabs__contents {
    margin-top: 3.75rem;
  }
}

.tabs__content {
  padding: 1.5625rem;
  border-radius: 0.25rem;
  background: #FFF;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.875rem;
}
@media (min-width: 787px) {
  .tabs__content {
    border-radius: 0;
  }
}

.tabs__content-head {
  max-width: 100%;
  width: 7.875rem;
  height: 2.5rem;
}
.tabs__content-head.--rise, .tabs__content-head.--sumitomo {
  width: 5.625rem;
  height: 2.5rem;
}
.tabs__content-head img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.tabs__content-img {
  width: 100%;
  height: 10.875rem;
  max-width: 100%;
  margin-inline: auto;
  position: relative;
}
@media (min-width: 787px) {
  .tabs__content-img {
    width: 18.75rem;
    height: 10.5625rem;
  }
}
.tabs__content-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.tabs__content-img p {
  font-size: 0.875rem;
  line-height: 1.25;
  font-weight: 400;
  color: #FFF;
  padding: 0.125rem 1rem;
  border-radius: 3.125rem;
  text-align: center;
  position: absolute;
  top: 0.625rem;
  right: 0.625rem;
}

.tabs__content-body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.25rem;
}
@media (min-width: 787px) {
  .tabs__content-body {
    gap: 0.875rem;
  }
}

.tabs__content-title {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media (min-width: 787px) {
  .tabs__content-title {
    font-size: 1.375rem;
  }
}

.tabs__content-spec-wrap {
  border-top: 1px solid #9aacc6;
  padding-top: 0.8125rem;
}

.tabs__content-spec {
  color: #a4aab2;
  font-size: 0.875rem;
  font-weight: 700;
}

.tabs__content-tag-wrap {
  margin-top: 0.625rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 0.3125rem;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 787px) {
  .tabs__content-tag-wrap {
    margin-top: 0;
  }
}

.tabs__content-tag {
  border-radius: 0.25rem;
  border: 1px solid #9aacc6;
  padding: 0.25rem 0.875rem;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #002e6e;
}
@media (min-width: 787px) {
  .tabs__content-tag {
    padding: 0.25rem 1rem;
  }
}

.tabs__content-text-wrap {
  margin-top: 0.75rem;
}
@media (min-width: 787px) {
  .tabs__content-text-wrap {
    margin-top: 0;
  }
}

.tabs__content-text {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.2;
  color: #252D3E;
}
@media (min-width: 787px) {
  .tabs__content-text {
    line-height: 1.6;
  }
}

.maker-source {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.6;
  margin-top: auto;
}

.top-reason {
  padding-block: 5rem;
}
@media (min-width: 787px) {
  .top-reason {
    padding-block: 6.25rem;
  }
}

.top-reason__inner {
  padding-inline: 1.5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3rem;
}
@media (min-width: 787px) {
  .top-reason__inner {
    padding-inline: initial;
    width: 70rem;
    max-width: 100%;
    margin-inline: auto;
  }
}

.top-sreason__title {
  white-space: nowrap;
}

.top-reason__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[1];
  grid-template-columns: repeat(1, 1fr);
  gap: 1rem;
}
@media (min-width: 787px) {
  .top-reason__list {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}

.top-reason__item {
  border-radius: 0.25rem;
  padding: 1.03125rem 1rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  background: url(../img/webp/reason-item-bg.webp) no-repeat center center/cover;
}
@media (min-width: 787px) {
  .top-reason__item {
    padding: 1rem 2.5rem;
    gap: 1.5rem;
  }
}

.top-reason__item-img {
  width: 5rem;
  max-width: 100%;
}
@media (min-width: 787px) {
  .top-reason__item-img {
    width: 7.5rem;
  }
}
.top-reason__item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.top-reason__item-body {
  letter-spacing: 0.05em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
}

.top-reason__item-title {
  font-size: 1.25rem;
  color: #196fdd;
  line-height: 1.28;
  letter-spacing: 0.05em;
}
@media (min-width: 787px) {
  .top-reason__item-title {
    font-size: 1.5rem;
  }
}

.top-reason__item-text {
  font-size: 0.9375rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
  font-weight: 500;
}

.top-reason__btn {
  margin-inline: auto;
}
@media (min-width: 787px) {
  .top-reason__btn {
    margin-left: auto;
    margin-right: initial;
  }
}
.top-reason__btn .section-btn {
  -webkit-box-shadow: none;
          box-shadow: none;
  background: #f5f5f5;
}
@media (min-width: 787px) {
  .top-reason__btn .section-btn {
    width: 19rem;
  }
}
.top-reason__btn .btn-text {
  text-indent: -1.25rem;
}

.reason-content {
  padding-block: 8.4375rem 5rem;
}
.reason-content.--reason-01 {
  padding-block: 8.4375rem 0;
}
@media (min-width: 787px) {
  .reason-content.--reason-01 {
    padding-block: 8.4375rem 5rem;
  }
}
.reason-content.--reason-01 .reason-content__inner {
  width: 100%;
  max-width: 100%;
  margin-inline: auto;
}
@media (min-width: 787px) {
  .reason-content.--reason-01 .reason-content__inner {
    width: 70rem;
  }
}
.reason-content.--reason-02 {
  background: url(../img/webp/bg-lightblue-glow.webp) no-repeat center left/cover;
}
@media (min-width: 787px) {
  .reason-content.--reason-02 {
    background: url(../img/webp/bg-lightblue-glow.webp) no-repeat center center/cover;
  }
}
.reason-content.--reason-02 .reason-content__inner {
  width: 100%;
  padding-inline: 1.5rem;
  max-width: 100%;
  margin-inline: auto;
}
@media (min-width: 787px) {
  .reason-content.--reason-02 .reason-content__inner {
    width: 65rem;
    padding-inline: initial;
  }
}
.reason-content.--reason-03 {
  background: #f4f6f8;
}
.reason-content.--reason-04 {
  background: #FFF;
}
.reason-content.--reason-04 .reason-content__inner {
  width: 70rem;
  max-width: 100%;
  margin-inline: auto;
}
.reason-content.--reason-05 {
  background: url(../img/webp/reason-05-bg-sp.webp) no-repeat center center/cover;
}
@media (min-width: 787px) {
  .reason-content.--reason-05 {
    background: url(../img/webp/reason-05-bg.webp) no-repeat center center/cover;
  }
}
.reason-content.--reason-05 .reason-content__inner {
  width: 65rem;
  max-width: 100%;
  margin-inline: auto;
}
.reason-content.--reason-06 .reason-content__inner {
  width: 70rem;
  max-width: 100%;
  margin-inline: auto;
  padding-inline: 1.5rem;
}
@media (min-width: 787px) {
  .reason-content.--reason-06 .reason-content__inner {
    padding-inline: 0;
  }
}

.reason-01-content__box {
  margin-top: 4.75rem;
  background: #f2f2f2;
  padding: 3rem 1.5rem 0rem;
  border-radius: 0.25rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3rem;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width: 787px) {
  .reason-01-content__box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    padding: 2.5rem 5rem;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 5rem;
  }
}

.reason-01-content__body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5625rem;
  width: 100%;
}
@media (min-width: 787px) {
  .reason-01-content__body {
    width: initial;
  }
}

.reason-01-content__title {
  font-size: 1.25rem;
  line-height: 1.28;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #196fdd;
  text-align: center;
}
@media (min-width: 787px) {
  .reason-01-content__title {
    font-size: 1.5rem;
    text-align: initial;
  }
}

.reason-01-content__items {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
}

.reason-01-content__item {
  font-size: 0.9375rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
  font-weight: 500;
  color: #252D3E;
  padding-left: 1.8125rem;
  position: relative;
}
.reason-01-content__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -50%;
  width: 1.3125rem;
  height: 1.3125rem;
  background: url(../img/webp/gradation-check-icon.webp) no-repeat center center/cover;
}
.reason-01-content__item span {
  color: #3990ff;
  font-weight: 700;
}

.reason-01-content__img {
  border-radius: 0.125rem;
  width: calc(100% + 3rem);
  margin-left: -1.5rem;
  margin-right: -1.5rem;
}
@media (min-width: 787px) {
  .reason-01-content__img {
    width: 35.125rem;
    max-width: 100%;
    margin-left: initial;
    margin-right: initial;
  }
}
.reason-01-content__img img {
  width: 100%;
  height: 100%;
}

.reason-02-content__wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.5rem;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 7.125rem;
}
@media (min-width: 787px) {
  .reason-02-content__wrap {
    margin-top: 6.875rem;
  }
}

.reason-content__head {
  text-align: center;
  font-size: 1.5rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #252D3E;
  font-weight: 700;
}
.reason-content__head strong {
  font-size: 2.5rem;
  line-height: 1.2;
  color: #f29600;
  font-weight: 700;
}
.reason-content__head strong.--small {
  font-size: 2rem;
}
.reason-content__head strong.--sp-small {
  font-size: 2rem;
}
@media (min-width: 787px) {
  .reason-content__head strong.--sp-small {
    font-size: 2.5rem;
  }
}
.reason-content__head.--stars {
  position: relative;
}
.reason-content__head.--stars::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -2.3125rem;
  translate: -50%;
  width: 4.25rem;
  height: 1.875rem;
  background: url(../img/webp/three-stars.webp) no-repeat center center/cover;
}

.reason-content__text {
  font-size: 0.9375rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
  font-weight: 500;
  color: #252D3E;
  margin-top: 1.375rem;
}
@media (min-width: 787px) {
  .reason-content__text {
    font-size: 1rem;
  }
}
.reason-content__text.--mt16 {
  margin-top: 1rem;
}

.reason-02-content__items {
  width: 100%;
  max-width: 100%;
  margin-inline: auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[1];
  grid-template-columns: repeat(1, 1fr);
  gap: 1rem;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width: 787px) {
  .reason-02-content__items {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
    width: 65rem;
  }
}

.reason-02-content__item {
  background: #FFF;
  padding: 1.5rem 2.5rem;
  border-radius: 0.25rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  text-align: center;
}

.reason-02-content__item-title {
  font-size: 1.25rem;
  line-height: 1.28;
  letter-spacing: 0.05em;
  font-weight: 700;
  background: linear-gradient(135deg, #004098, #3990ff);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}

.reason-02-content__item-body {
  position: relative;
  font-size: 1.5rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #f29600;
  font-weight: 700;
  margin-top: 1rem;
}
@media (min-width: 787px) {
  .reason-02-content__item-body {
    margin-top: 1.125rem;
  }
}
.reason-02-content__item-body strong {
  font-size: 2.5rem;
  line-height: 1.2;
  font-weight: 700;
}
.reason-02-content__item-body::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -1.125rem;
  translate: -50%;
  width: 2.6875rem;
  height: 1.3125rem;
  background: url(../img/webp/three-stars.webp) no-repeat center center/contain;
}

.reason-02-content__item-text {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.6;
  color: #6d7075;
  margin-top: 0.5rem;
}

.reason-02-content__item-box {
  font-size: 0.875rem;
  font-weight: 700;
  color: #196fdd;
  background: #ecf6fd;
  padding: 0.875rem 0.3125rem;
  border-radius: 0.25rem;
  text-align: center;
}

.reason-02-content__attention {
  background: linear-gradient(135deg, #ffbd4a, #f29600);
  padding: 1.5rem 0.625rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  max-width: 100%;
  margin-inline: auto;
  border-radius: 0.25rem;
}
@media (min-width: 787px) {
  .reason-02-content__attention {
    width: 54.625rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.reason-02-content__attention-text {
  padding: 0.5rem 2rem;
  background: #FFF;
  border-radius: 3.125rem;
  letter-spacing: 0.05em;
  width: 17.8125rem;
  margin-inline: auto;
  text-align: center;
}
@media (min-width: 787px) {
  .reason-02-content__attention-text {
    width: 17.8125rem;
    margin-inline: 0;
  }
}
.reason-02-content__attention-text span {
  background: linear-gradient(135deg, #ffbd4a, #f29600);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  font-size: 1.25rem;
  line-height: 1.28;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.reason-02-content__attention-main-text {
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #FFF;
  text-align: center;
}
@media (min-width: 787px) {
  .reason-02-content__attention-main-text {
    text-align: initial;
  }
}
.reason-02-content__attention-main-text span {
  font-size: 2rem;
  line-height: 1.28;
}

.reason-03-content__wrap {
  margin-top: 4.75rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3rem;
}

.reason-03-content__box {
  background: #FFF;
  padding: 3.5rem 1.5rem;
  border-radius: 0.25rem;
  width: 70rem;
  max-width: 100%;
  margin-inline: auto;
}
@media (min-width: 787px) {
  .reason-03-content__box {
    padding: 3.5rem 5rem;
  }
}

.reason-03-content__head {
  font-size: 1.25rem;
  line-height: 1.28;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #f29600;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  white-space: nowrap;
}
.reason-03-content__head::before, .reason-03-content__head::after {
  content: "";
  width: 1.25rem;
  height: 0.125rem;
  background: #f29600;
}
@media (min-width: 787px) {
  .reason-03-content__head::before, .reason-03-content__head::after {
    width: 0.9375rem;
    height: 0.125rem;
  }
}
.reason-03-content__head::before {
  -webkit-transform: rotate(48deg);
          transform: rotate(48deg);
  margin-right: 1.375rem;
}
@media (min-width: 787px) {
  .reason-03-content__head::before {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    margin-right: 1.5rem;
  }
}
.reason-03-content__head::after {
  -webkit-transform: rotate(-48deg);
          transform: rotate(-48deg);
  margin-left: 1.375rem;
}
@media (min-width: 787px) {
  .reason-03-content__head::after {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    margin-left: 1.5rem;
  }
}

.reason-03-content__items {
  margin-top: 2.5rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[1];
  grid-template-columns: repeat(1, 1fr);
  gap: 1rem;
  width: 60.0625rem;
  max-width: 100%;
  margin-inline: auto;
}
@media (min-width: 787px) {
  .reason-03-content__items > *:nth-child(5) {
    grid-column: 1/-1;
    width: calc(50% - 0.5rem);
    margin-inline: auto;
  }
}
@media (min-width: 787px) {
  .reason-03-content__items {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}

.reason-03-content__item {
  background: url(../img/webp/reason-03-content-bg-sp.webp) no-repeat center center/cover;
  padding: 1rem;
  border-radius: 0.25rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}
@media (min-width: 787px) {
  .reason-03-content__item {
    background: url(../img/webp/reason-03-content-bg.webp) no-repeat center center/cover;
    padding: 1rem 2.5rem;
    border-radius: 0.125rem;
    gap: 1.5rem;
  }
}

.reason-03-content__item-img {
  width: 5rem;
  max-width: 100%;
  height: 4.1875rem;
}
@media (min-width: 787px) {
  .reason-03-content__item-img {
    width: 7.5rem;
    height: 6.25rem;
  }
}
.reason-03-content__item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.reason-03-content__item-body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
}

.reason-03-content__item-title {
  font-size: 1.25rem;
  line-height: 1.28;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #196fdd;
}
@media (min-width: 787px) {
  .reason-03-content__item-title {
    font-size: 1.5rem;
  }
}

.reason-03-content__item-text {
  font-size: 0.9375rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
  font-weight: 500;
  color: #252D3E;
}

.reason-04-content__wrap {
  margin-top: 4.75rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.5rem;
}
@media (min-width: 787px) {
  .reason-04-content__wrap {
    gap: 3rem;
  }
}

.reason-04-content__items {
  margin-top: 1.4375rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.8125rem;
}
@media (min-width: 787px) {
  .reason-04-content__items {
    gap: 3.4375rem;
  }
}

.reason-04-content__item {
  background: url(../img/webp/reason-04-content-bg-sp.webp) no-repeat center center/cover;
  padding: 3.5rem 1.5rem 3.75rem 1.5rem;
  border-radius: 0.25rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5rem;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}
@media (min-width: 787px) {
  .reason-04-content__item {
    background: url(../img/webp/reason-04-content-bg.webp) no-repeat center center/cover;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    padding: 3.5rem 5rem 3.5rem 2.5rem;
    gap: 3.5rem;
  }
}
.reason-04-content__item:nth-child(2) .reason-04-content__item-title::before {
  width: 3.25rem;
  left: -1.4375rem;
}
@media (min-width: 787px) {
  .reason-04-content__item:nth-child(2) .reason-04-content__item-title::before {
    width: 2rem;
    left: -1.5625rem;
  }
}
.reason-04-content__item:nth-child(3) .reason-04-content__item-body .reason-04-content__item-title {
  letter-spacing: 0.04em;
}
@media (min-width: 787px) {
  .reason-04-content__item:nth-child(3) .reason-04-content__item-body .reason-04-content__item-title {
    padding-block: 0.875rem;
  }
}

.reason-balloon {
  width: 10.1875rem;
  max-width: 100%;
  border-radius: 3.125rem;
  margin-inline: auto;
  padding-block: 0.5rem;
  padding-inline: 2.5rem;
  background: -webkit-gradient(linear, left top, right top, from(#3990ff), to(#196fdd));
  background: linear-gradient(to right, #3990ff, #196fdd);
  font-size: 1.25rem;
  color: #fff07f;
  font-weight: 700;
  letter-spacing: 0.04em;
  position: absolute;
  white-space: nowrap;
  top: -1.5625rem;
  left: 50%;
  translate: -50%;
  z-index: 1;
}
.reason-balloon::after {
  content: "";
  position: absolute;
  left: 50%;
  translate: -50%;
  bottom: -0.4375rem;
  width: 1.5rem;
  height: 0.5rem;
  background: url(../img/svg/bubble-triangle.svg) no-repeat center center/contain;
}

.reason-04-content__item-img {
  width: 100%;
  height: 14.4375rem;
}
@media (min-width: 787px) {
  .reason-04-content__item-img {
    width: 26.25rem;
    height: 17.75rem;
  }
}
.reason-04-content__item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.125rem;
}

.reason-04-content__item-body {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 787px) {
  .reason-04-content__item-body {
    gap: 1.8125rem;
  }
}

.reason-04-content__item-title {
  font-size: 1.25rem;
  line-height: 1.28;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #196fdd;
  padding-left: 1.8125rem;
  position: relative;
}
@media (min-width: 787px) {
  .reason-04-content__item-title {
    font-size: 1.5rem;
    padding-left: 1.5625rem;
    position: relative;
  }
}
.reason-04-content__item-title::before {
  content: "";
  position: absolute;
  left: -0.8125rem;
  top: 50%;
  translate: 0 -50%;
  width: 2rem;
  height: 0.3125rem;
  background: #196fdd;
  rotate: 90deg;
}
@media (min-width: 787px) {
  .reason-04-content__item-title::before {
    left: -1.5625rem;
    width: 2rem;
  }
}

.reason-04-content__item-text {
  font-size: 0.9375rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
  font-weight: 500;
  color: #252D3E;
  text-align: justify;
}

.reason-05-content__wrap {
  padding-inline: 1.5rem;
  margin-top: 4.75rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3.5rem;
}
@media (min-width: 787px) {
  .reason-05-content__wrap {
    padding-inline: 0;
    gap: 2.5rem;
  }
}

.reason-05-content__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[1];
  grid-template-columns: repeat(1, 1fr);
  gap: 1rem;
}
@media (min-width: 787px) {
  .reason-05-content__items {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
}

.reason-05-content__item {
  padding: 2rem 1.25rem;
  background: #FFF;
  border-radius: 0.25rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 787px) {
  .reason-05-content__item {
    padding: 2rem;
  }
}

.reason-05-content__item-title {
  font-size: 1.25rem;
  line-height: 1.28;
  letter-spacing: 0.05em;
  font-weight: 700;
  background: linear-gradient(135deg, #004098, #3990ff);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  text-align: center;
}

.reason-05-content__item-body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.reason-05-content__item-img {
  width: 100%;
  max-width: 100%;
  height: 10.625rem;
  border-radius: 0.125rem;
}
@media (min-width: 787px) {
  .reason-05-content__item-img {
    width: 17rem;
    height: 9.8125rem;
  }
}
.reason-05-content__item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.reason-05-content__item-text {
  font-size: 0.875rem;
  line-height: 1.6;
  font-weight: 400;
  color: #252D3E;
  text-align: center;
  max-width: 100%;
}
@media (min-width: 787px) {
  .reason-05-content__item-text {
    width: 15.5625rem;
  }
}

.reason-05-content__result-title {
  width: 17.375rem;
  max-width: 100%;
  border-radius: 3.125rem;
  margin-inline: auto;
  padding-block: 0.5rem;
  padding-inline: 2.5rem;
  background: -webkit-gradient(linear, left top, right top, from(#3990ff), to(#196fdd));
  background: linear-gradient(to right, #3990ff, #196fdd);
  font-size: 1.25rem;
  color: #fff07f;
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: 0.05em;
  position: relative;
  white-space: nowrap;
}
.reason-05-content__result-title::after {
  content: "";
  position: absolute;
  left: 50%;
  translate: -50%;
  bottom: -0.4375rem;
  width: 1.5rem;
  height: 0.5rem;
  background: url(../img/svg/bubble-triangle.svg) no-repeat center center/contain;
}

.reason-05-content__result-items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[1];
  grid-template-columns: repeat(1, 1fr);
  gap: 3.25rem;
  margin-top: 3.3125rem;
}
@media (min-width: 787px) {
  .reason-05-content__result-items {
    -ms-grid-columns: (1fr)[4];
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
}

.reason-05-content__result-item {
  position: relative;
  text-align: center;
}
.reason-05-content__result-item::before {
  content: "";
  position: absolute;
  left: 50%;
  translate: -50%;
  top: -2.375rem;
  width: 3.75rem;
  height: 1.875rem;
  background: url(../img/webp/three-stars.webp) no-repeat center center/contain;
}
@media (min-width: 787px) {
  .reason-05-content__result-item::before {
    top: -2.1875rem;
  }
}

.reason-05-content__result-item-title {
  padding: 0.75rem 0.3125rem 1rem;
  background: linear-gradient(135deg, #ffbd4a, #f29600);
  border-radius: 0.25rem;
  font-size: 1.25rem;
  line-height: 1.7;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #FFF;
  width: 15.5rem;
  margin-inline: auto;
}
@media (min-width: 787px) {
  .reason-05-content__result-item-title {
    padding: 1rem 0.3125rem;
    font-size: 1.5rem;
    width: auto;
    margin-inline: 0;
  }
}
.reason-05-content__result-item-title strong {
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 600;
  translate: 0 0.1875rem;
  display: inline-block;
}
@media (min-width: 787px) {
  .reason-05-content__result-item-title strong {
    font-size: 2.5rem;
    translate: 0;
  }
}

.reason-05-content__result-item-text {
  font-size: 0.875rem;
  line-height: 1.6;
  font-weight: 400;
  color: #252D3E;
  margin-top: 0.5rem;
}

.reason-content__head-box {
  color: #196fdd;
  font-size: 0.875rem;
  font-weight: 700;
  background: #ecf6fd;
  padding: 0.4375rem;
  border-radius: 0.25rem;
  text-align: center;
  margin-top: 0.8125rem;
  width: 18.1875rem;
  max-width: 100%;
  margin-inline: auto;
  letter-spacing: 0.01em;
}
@media (min-width: 787px) {
  .reason-content__head-box {
    padding: 0.5rem;
    margin-top: 1rem;
  }
}

.reason-06-content__wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 7.125rem;
}
@media (min-width: 787px) {
  .reason-06-content__wrap {
    gap: 2.5rem;
    margin-top: 6.875rem;
  }
}
.reason-06-content__wrap .reason-content__head span {
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 0.125rem;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 1.5;
}
.reason-06-content__wrap .reason-content__text {
  margin-top: 2rem;
}
@media (min-width: 787px) {
  .reason-06-content__wrap .reason-content__text {
    margin-top: 2.5rem;
  }
}

.reason-06-content__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  gap: 2.0625rem 1rem;
}
@media (min-width: 787px) {
  .reason-06-content__items {
    -ms-grid-columns: (1fr)[4];
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
}

.reason-06-content__item {
  position: relative;
}

.reason-06-content__item-img {
  width: 10.1875rem;
  height: 6.5rem;
  max-width: 100%;
  border-radius: 0.25rem;
  overflow: hidden;
}
@media (min-width: 787px) {
  .reason-06-content__item-img {
    width: 16.75rem;
    height: 11.1875rem;
  }
}
.reason-06-content__item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.reason-06-content__item-title {
  white-space: nowrap;
  border-radius: 3.125rem;
  margin-inline: auto;
  padding: 0.25rem 1.5rem;
  background: -webkit-gradient(linear, left top, right top, from(#3990ff), to(#196fdd));
  background: linear-gradient(to right, #3990ff, #196fdd);
  font-size: 1.125rem;
  text-align: center;
  color: #fff07f;
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: 0.05em;
  position: absolute;
  bottom: -1.0625rem;
  left: 50%;
  translate: -50%;
  z-index: 1;
}
@media (min-width: 787px) {
  .reason-06-content__item-title {
    bottom: -1.5625rem;
    font-size: 1.25rem;
    padding: 0.5rem 2.5rem;
  }
}

.reason-06-content__triangle {
  width: 17.25rem;
  max-width: 100%;
  height: 3rem;
  margin-inline: auto;
  background: -webkit-gradient(linear, left top, right top, from(#196fdd), to(#3990ff));
  background: linear-gradient(to right, #196fdd, #3990ff);
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
  margin-top: 1.125rem;
}
@media (min-width: 787px) {
  .reason-06-content__triangle {
    width: 20.625rem;
    height: 4.5625rem;
    margin-top: 1rem;
  }
}

.reason-06-content__result {
  background: url(../img/webp/reason-06-content-bg-sp.webp) no-repeat center center/cover;
  padding: 3.5rem 1rem;
  border-radius: 0.25rem;
  width: 70rem;
  max-width: 100%;
  margin-inline: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}
@media (min-width: 787px) {
  .reason-06-content__result {
    background: url(../img/webp/reason-06-content-bg.webp) no-repeat center center/cover;
    padding: 3.5rem 5rem;
    margin-top: 1.625rem;
    gap: 2.5rem;
  }
}

.reason-06-content__result-title {
  font-size: 1.5rem;
  line-height: 1.28;
  letter-spacing: 0.05em;
  font-weight: 700;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background: -webkit-gradient(linear, left top, right top, from(#3990ff), to(#196fdd));
  background: linear-gradient(to right, #3990ff, #196fdd);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  margin-inline: auto;
}

.reason-06-content__result-text {
  font-size: 0.9375rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
  font-weight: 500;
  color: #252D3E;
  text-align: center;
}

.reason-06-content__result-items {
  width: 100%;
  max-width: 100%;
  margin-inline: auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[1];
  grid-template-columns: repeat(1, 1fr);
  gap: 1rem;
}
@media (min-width: 787px) {
  .reason-06-content__result-items {
    width: 60rem;
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

.reason-06-content__result-item {
  border-radius: 0.25rem;
  background: #FFF;
  padding: 1rem 1rem 2.5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
}
@media (min-width: 787px) {
  .reason-06-content__result-item {
    padding: 2.5rem;
  }
}

.reason-06-content__result-item-img {
  width: 100%;
  height: 9.8125rem;
  max-width: 100%;
  border-radius: 0.125rem;
}
@media (min-width: 787px) {
  .reason-06-content__result-item-img {
    width: 24.25rem;
    height: 13.6875rem;
  }
}
.reason-06-content__result-item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.reason-06-content__result-item-body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
}

.reason-06-content__result-item-title {
  color: #196fdd;
  font-size: 1.5rem;
  line-height: 1.28;
  letter-spacing: 0.05em;
  font-weight: 700;
}

.reason-06-content__result-item-text {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
}
.reason-06-content__result-item-text li {
  font-size: 0.9375rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
  font-weight: 500;
  color: #252D3E;
  padding-left: 2.0625rem;
  position: relative;
}
.reason-06-content__result-item-text li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -50%;
  background: url(../img/webp/gradation-check-icon.webp) no-repeat center center/contain;
  width: 1.3125rem;
  height: 1.3125rem;
}

.reason-06-content__bottom {
  font-size: 1.125rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #252D3E;
  text-align: center;
}
@media (min-width: 787px) {
  .reason-06-content__bottom {
    font-size: 1.5rem;
  }
}
.reason-06-content__bottom span {
  font-size: 1.5rem;
  line-height: 1.28;
  letter-spacing: 0.05em;
  font-weight: 700;
  background: -webkit-gradient(linear, left top, right top, from(#3990ff), to(#196fdd));
  background: linear-gradient(to right, #3990ff, #196fdd);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media (min-width: 787px) {
  .reason-06-content__bottom span {
    font-size: 2rem;
  }
}
.reason-06-content__bottom span.--small {
  font-size: 1.25rem;
}
@media (min-width: 787px) {
  .reason-06-content__bottom span.--small {
    font-size: 2rem;
  }
}
.reason-06-content__bottom span.--mt16 {
  margin-top: 1.25rem;
  display: inline-block;
}
@media (min-width: 787px) {
  .reason-06-content__bottom span.--mt16 {
    margin-top: 0;
  }
}
.reason-06-content__bottom strong {
  font-size: 2rem;
  line-height: 1.2;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #f29600;
}
@media (min-width: 787px) {
  .reason-06-content__bottom strong {
    font-size: 2.5rem;
  }
}

.region-information {
  padding-block: 8.375rem 5.0625rem;
  background: #dfe9f3;
}
@media (min-width: 787px) {
  .region-information {
    padding-block: 9.6875rem 6.25rem;
  }
}

.region-information__inner {
  width: 70rem;
  max-width: 100%;
  margin-inline: auto;
  padding-inline: 1rem;
}
@media (min-width: 787px) {
  .region-information__inner {
    padding-inline: 0;
  }
}

.region-information__lead {
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.02em;
  margin-top: 5.25rem;
  padding-inline: 0.5rem;
}
@media (min-width: 787px) {
  .region-information__lead {
    text-align: center;
    margin-top: 4.75rem;
    padding-inline: 0;
  }
}

.page-menu.--region {
  margin-top: 3rem;
  padding-inline: 0.5rem;
  padding-block: 0;
}
@media (min-width: 787px) {
  .page-menu.--region {
    padding-inline: 0;
    padding-block: 1.25rem;
  }
}
.page-menu.--region .page-menu__items {
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}
@media (min-width: 787px) {
  .page-menu.--region .page-menu__items {
    -ms-grid-columns: (1fr)[7];
    grid-template-columns: repeat(7, 1fr);
    width: 70rem;
  }
}
.page-menu.--region .page-menu__item a {
  padding: 0.9375rem 1rem 0.9375rem 2.5rem;
}
@media (min-width: 787px) {
  .page-menu.--region .page-menu__item a {
    padding: 0.9375rem 1rem 0.9375rem 2rem;
  }
}
.page-menu.--region .page-menu__item a::after {
  right: 0.4375rem;
}
@media (min-width: 787px) {
  .page-menu.--region .page-menu__item a::after {
    right: 1rem;
  }
}

.region-information__content {
  margin-top: 3.5rem;
}
@media (min-width: 787px) {
  .region-information__content {
    margin-top: 5rem;
  }
}

.region-information__title-wrap {
  position: relative;
}
.region-information__title-wrap::before {
  content: "";
  position: absolute;
  left: 50%;
  translate: -50%;
  bottom: -2.5rem;
  background: -webkit-gradient(linear, left top, right top, from(#3990ff), to(#196fdd));
  background: linear-gradient(to right, #3990ff, #196fdd);
  width: 100%;
  height: 1px;
}

.region-information__title {
  font-size: 1.6875rem;
  font-weight: 700;
  background: -webkit-gradient(linear, left top, right top, from(#3990ff), to(#196fdd));
  background: linear-gradient(to right, #3990ff, #196fdd);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  text-align: center;
  letter-spacing: 0.05em;
  line-height: 1.2;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}

.region-information__items {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3.5rem;
}
@media (min-width: 787px) {
  .region-information__items {
    gap: 5rem;
  }
}

.region-information__list-lead {
  font-size: 0.9375rem;
  line-height: 1.6;
  font-weight: 500;
  color: #252D3E;
  text-align: center;
  letter-spacing: 0.02em;
}
@media (min-width: 787px) {
  .region-information__list-lead {
    letter-spacing: 0;
  }
}
.region-information__list-lead span {
  margin-top: 0.5rem;
  color: #f29600;
  display: block;
  line-height: 1.6;
}
@media (min-width: 787px) {
  .region-information__list-lead span {
    margin-top: 0;
  }
}

.region-information__lists {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  margin-top: 5rem;
}
@media (min-width: 787px) {
  .region-information__lists {
    gap: 1rem;
    -ms-grid-columns: (1fr)[4];
    grid-template-columns: repeat(4, 1fr);
  }
}

.region-information__list {
  border-radius: 0.25rem;
  background: #FFF;
  overflow: hidden;
}

.region-information__list-title {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.28;
  color: #FFF;
  text-align: center;
  background: -webkit-gradient(linear, left top, right top, from(#3990ff), to(#196fdd));
  background: linear-gradient(to right, #3990ff, #196fdd);
  padding-block: 1rem;
}
.region-information__list-title.--small {
  font-size: 1.125rem;
}
@media (min-width: 787px) {
  .region-information__list-title.--small {
    font-size: 1.25rem;
  }
}

.region-information__list-body {
  padding-block: 1rem 1.5rem;
  padding-inline: 0.5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
@media (min-width: 787px) {
  .region-information__list-body {
    padding-inline: 0;
  }
}

.region-information__list-head {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.28;
  color: #252D3E;
  text-align: center;
  background: -webkit-gradient(linear, left top, right top, from(#3990ff), to(#196fdd));
  background: linear-gradient(to right, #3990ff, #196fdd);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  padding-block: 0;
}
@media (min-width: 787px) {
  .region-information__list-head {
    height: 4rem;
    font-size: 1.5rem;
    padding-block: 1rem;
  }
}

.region-information__list-box {
  background: #f4f6f8;
  border-radius: 0.625rem;
  padding-block: 0.875rem 1rem;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.7;
  color: #196fdd;
  width: 13.75rem;
  max-width: 100%;
  margin-inline: auto;
  text-align: center;
}
@media (min-width: 787px) {
  .region-information__list-box {
    font-size: 1.5rem;
    padding-block: 1rem;
    height: 5rem;
  }
}
.region-information__list-box strong {
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.2;
  padding-inline: 0.125rem;
}
@media (min-width: 787px) {
  .region-information__list-box strong {
    font-size: 2.5rem;
    padding-inline: 0;
  }
}

.region-information__list-text {
  font-size: 0.75rem;
  line-height: 1.2;
  font-weight: 500;
  color: #252D3E;
  text-align: center;
}
@media (min-width: 787px) {
  .region-information__list-text {
    font-size: 0.875rem;
    line-height: 1.6;
  }
}

.region-information__list-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.region-information__btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 2.5rem;
}
@media (min-width: 787px) {
  .region-information__btn {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 1.875rem;
  }
}
.region-information__btn .section-btn {
  width: 100%;
  height: 4.5rem;
  padding-left: 4.75rem;
}
@media (min-width: 787px) {
  .region-information__btn .section-btn {
    width: 20.625rem;
    height: 3.375rem;
    padding-left: 0;
  }
}
.region-information__btn .section-btn span {
  text-align: left;
  font-weight: 700;
}
@media (min-width: 787px) {
  .region-information__btn .section-btn span {
    text-align: center;
    font-weight: 500;
  }
}
@media (min-width: 787px) {
  .region-information__btn .section-btn:nth-child(2) {
    width: 17.8125rem;
  }
}

.region-information__lists.--saitama {
  -ms-grid-columns: (1fr)[1];
  grid-template-columns: repeat(1, 1fr);
  gap: initial;
}
.region-information__lists.--saitama .region-information__list-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 0.9375rem;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 1.5rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 787px) {
  .region-information__lists.--saitama .region-information__list-btn {
    gap: 0.9375rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.region-information__lists.--saitama .region-information__list-body {
  gap: initial;
  padding-inline: 1.5rem;
}
@media (min-width: 787px) {
  .region-information__lists.--saitama .region-information__list-body {
    padding-inline: 0;
  }
}
.region-information__lists.--saitama .region-information__list-body {
  padding-block: 2.5rem;
}
.region-information__lists.--saitama .region-information__list-head {
  padding-block: initial;
  height: initial;
  font-size: 1.5rem;
}

.region-information__lists.--no-subsidy {
  gap: 1.5rem;
  -ms-grid-columns: (1fr)[1];
  grid-template-columns: repeat(1, 1fr);
}
.region-information__lists.--no-subsidy .region-information__list-head {
  padding-block: initial;
  height: auto;
}
.region-information__lists.--no-subsidy .region-information__list-body {
  padding-block: 2.5rem;
  gap: 1.5rem;
}

.region-information__list-box-wrap {
  width: 55rem;
  max-width: 100%;
  margin-inline: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 2.5rem;
}
@media (min-width: 787px) {
  .region-information__list-box-wrap {
    gap: 1.875rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.region-information__list-box-wrap .region-information__list-box {
  border-radius: 0.125rem;
  width: 100%;
  place-content: center;
  padding-block: 1.125rem;
}
@media (min-width: 787px) {
  .region-information__list-box-wrap .region-information__list-box {
    height: 9rem;
    padding-block: 1rem;
  }
}
.region-information__list-box-wrap .region-information__list-box span {
  display: block;
  text-align: center;
  font-size: 1.5rem;
}

.region-information__application-box {
  border: 1px solid #9aacc6;
  border-radius: 0.125rem;
  padding: 1.75rem 0.875rem 2.25rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
  width: 54.625rem;
  max-width: 100%;
  margin-inline: auto;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 1.5rem;
}
@media (min-width: 787px) {
  .region-information__application-box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 5rem;
    padding: 2rem;
    border-radius: 0.25rem;
    margin-top: 1.25rem;
  }
}

.region-information__application-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
}
@media (min-width: 787px) {
  .region-information__application-inner {
    gap: 1.75rem;
  }
}

.region-information__application-head {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #196fdd;
}

.region-information__application-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.625rem;
}
@media (min-width: 787px) {
  .region-information__application-wrap {
    gap: 1rem;
  }
}

.region-information__application-items {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 787px) {
  .region-information__application-items {
    gap: 1rem;
  }
}

.region-information__application-item {
  color: #002e6e;
  font-size: 0.875rem;
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
@media (min-width: 787px) {
  .region-information__application-item {
    font-size: 0.9375rem;
    letter-spacing: 0.05em;
    white-space: normal;
  }
}

.related-business {
  padding-block: 8.375rem 5rem;
  background: url(../img/webp/related-business-bg-sp.webp) no-repeat center center/cover;
}
@media (min-width: 787px) {
  .related-business {
    background: url(../img/webp/related-business-bg-pc.webp) no-repeat center center/cover;
  }
}

.related-business__inner {
  width: 22.375rem;
  max-width: 100%;
  margin-inline: auto;
}
@media (min-width: 787px) {
  .related-business__inner {
    width: 75rem;
  }
}

.related-business__content {
  background: rgba(255, 255, 255, 0.88);
  padding: 5rem 1.5rem;
  border-radius: 0.25rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 3rem;
  margin-top: 4.75rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 787px) {
  .related-business__content {
    padding: 5rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 6.25rem;
    margin-top: 5.25rem;
  }
}

.related-business__logo {
  width: 12.5rem;
  max-width: 100%;
  height: 3.5rem;
}
@media (min-width: 787px) {
  .related-business__logo {
    width: 23.9375rem;
    height: 6.6875rem;
  }
}
.related-business__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.related-business__head {
  font-size: 1.5rem;
  line-height: 1.28;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #004096;
}
@media (min-width: 787px) {
  .related-business__head {
    font-size: 2rem;
    line-height: 1;
  }
}

.related-business__text {
  font-size: 0.9375rem;
  line-height: 1.6;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #252D3E;
  margin-top: 1.5rem;
}
@media (min-width: 787px) {
  .related-business__text {
    font-size: 1rem;
    line-height: 1.8;
  }
}

.related-business__btn {
  margin-top: 2rem;
  width: 19.375rem;
  max-width: 100%;
}
@media (min-width: 787px) {
  .related-business__btn {
    width: 16.875rem;
  }
}
.related-business__btn .gradation-btn1 {
  padding-block: 1.5rem;
}
@media (min-width: 787px) {
  .related-business__btn .gradation-btn1 {
    padding-block: 0.9375rem;
  }
}
.related-business__btn .gradation-btn1 span {
  text-indent: -3.125rem;
}
@media (min-width: 787px) {
  .related-business__btn .gradation-btn1 span {
    text-indent: -1.75rem;
  }
}

.section__title-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
}
@media (min-width: 787px) {
  .section__title-wrap {
    gap: 1rem;
  }
}
.section__title-wrap.--align-center {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.section__title-wrap.--sp-align-center {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 787px) {
  .section__title-wrap.--sp-align-center {
    -webkit-box-align: initial;
    -webkit-align-items: initial;
        -ms-flex-align: initial;
            align-items: initial;
  }
}

.section__title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 2rem;
  letter-spacing: 0.05em;
  background: -webkit-gradient(linear, left top, right top, from(#3990FF), to(#196FDD));
  background: linear-gradient(to right, #3990FF, #196FDD);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
@media (min-width: 787px) {
  .section__title {
    font-size: 2.5rem;
  }
}

.section__title-en {
  text-transform: capitalize;
  letter-spacing: 0.02em;
  font-weight: 300;
  font-family: "Work Sans", sans-serif;
  color: #B7C6D9;
  font-size: 1rem;
  line-height: 1.3;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 0.875rem;
}
@media (min-width: 787px) {
  .section__title-en {
    font-size: 1.125rem;
  }
}
.section__title-en::before {
  content: "";
  width: 2.1875rem;
  height: 1.125rem;
  background: url(../img/webp/switch-icon.webp) no-repeat center center/cover;
}
.section__title-en.--left {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.page__title-wrap {
  text-align: center;
}

.page__title {
  position: relative;
  width: 100%;
  font-size: 1.5rem;
  line-height: 1.33;
  letter-spacing: 0.05em;
  background: -webkit-gradient(linear, left top, right top, from(#3990FF), to(#196FDD));
  background: linear-gradient(to right, #3990FF, #196FDD);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
@media (min-width: 787px) {
  .page__title {
    font-size: 2rem;
    line-height: 1.5;
  }
}
.page__title::before, .page__title::after {
  content: "";
  position: absolute;
  left: 50%;
  translate: -50%;
}
.page__title::before {
  top: -3.4375rem;
  width: 2.0625rem;
  height: 2.4375rem;
  background: url(../img/webp/energy-icon.webp) no-repeat center center/contain;
}
.page__title::after {
  bottom: -1.75rem;
  width: 2.5rem;
  height: 0.25rem;
  background: -webkit-gradient(linear, left top, right top, from(#3990FF), to(#196FDD));
  background: linear-gradient(to right, #3990FF, #196FDD);
}
@media (min-width: 787px) {
  .page__title::after {
    height: 0.375rem;
    bottom: -1.875rem;
  }
}

.section-btn {
  width: 19.375rem;
  max-width: 100%;
  height: 4.5rem;
  background: #FFF;
  text-align: center;
  border-radius: 3.125rem;
  -webkit-box-shadow: 0 0 13px 0 rgba(17, 59, 113, 0.06);
          box-shadow: 0 0 13px 0 rgba(17, 59, 113, 0.06);
  display: block;
  padding-block: 1.5rem;
  position: relative;
}
@media (min-width: 787px) {
  .section-btn {
    width: 19.9375rem;
  }
}

.btn-hover {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  overflow: hidden;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  z-index: 0;
}

/* 背景グラデーションのホバーエフェクト */
.btn-hover::before {
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left top, right top, from(#3990FF), to(#196FDD));
  background: linear-gradient(90deg, #3990FF, #196FDD);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.btn-text {
  width: 100%;
  text-align: center;
  font-weight: 500;
  font-size: 0.9375rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: #252D3E;
  padding-right: 1.5rem;
  text-indent: -2.1875rem;
}
@media (min-width: 787px) {
  .btn-text {
    text-indent: initial;
  }
}
.btn-text.--subsidy-information {
  font-weight: 700;
  padding-right: 6.5625rem;
  text-indent: 0;
  text-align: left;
  padding-left: 2.5rem;
}
@media (min-width: 787px) {
  .btn-text.--subsidy-information {
    padding-right: 1.5rem;
    font-weight: 500;
    text-indent: -2.1875rem;
    text-align: center;
    padding-left: 0;
  }
}

.btn-dot {
  position: absolute;
  right: 1.5rem;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: -webkit-gradient(linear, left top, right top, from(#3990FF), to(#196FDD));
  background: linear-gradient(90deg, #3990FF, #196FDD);
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
  z-index: 1;
}

/* 白いドットラッパー */
.btn-dot-white {
  position: absolute;
  right: 1rem;
  top: 50%;
  -webkit-transform: translateY(-50%) scale(0);
          transform: translateY(-50%) scale(0);
  background-color: #fff;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  z-index: 2;
}

.btn-dot-inner {
  width: 0.5rem;
  height: 0.5rem;
  background: -webkit-gradient(linear, left top, right top, from(#3990FF), to(#196FDD));
  background: linear-gradient(90deg, #3990FF, #196FDD);
  border-radius: 50%;
}

/* ホバー時アニメーション */
@media (hover: hover) {
  .btn-hover:hover::before {
    opacity: 1;
  }
  .btn-hover:hover .btn-text {
    color: #fff;
  }
  .btn-hover:hover .btn-dot {
    -webkit-transform: scale(80);
            transform: scale(80);
    opacity: 0;
  }
  .btn-hover:hover .btn-dot-white {
    -webkit-transform: translateY(-50%) scale(1);
            transform: translateY(-50%) scale(1);
  }
}
/* リバースボタン */
.section-btn-rev {
  width: 19.375rem;
  max-width: 100%;
  height: 4.5rem;
  background: #FFF;
  text-align: center;
  border-radius: 3.125rem;
  -webkit-box-shadow: 0 0 13px 0 rgba(17, 59, 113, 0.06);
          box-shadow: 0 0 13px 0 rgba(17, 59, 113, 0.06);
  display: block;
  padding-block: 1.5rem;
  position: relative;
}
@media (min-width: 787px) {
  .section-btn-rev {
    width: 19.9375rem;
  }
}

/* 通常時（元のホバー状態） */
.btn-rev-hover {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  overflow: hidden;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  z-index: 0;
  color: #fff;
}

.btn-rev-hover::before {
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left top, right top, from(#3990FF), to(#196FDD));
  background: linear-gradient(90deg, #3990FF, #196FDD);
  opacity: 1;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.btn-rev-text {
  width: 100%;
  text-align: center;
  font-weight: 700;
  font-size: 0.9375rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: #fff;
  padding-right: 1.5rem;
}

.btn-rev-dot {
  position: absolute;
  right: 1.5rem;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #fff;
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
  z-index: 1;
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.btn-rev-dot-white {
  position: absolute;
  right: 1rem;
  top: 50%;
  -webkit-transform: translateY(-50%) scale(1);
          transform: translateY(-50%) scale(1);
  background-color: #fff;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  z-index: 2;
}

.btn-rev-dot-inner {
  width: 0.5rem;
  height: 0.5rem;
  background: -webkit-gradient(linear, left top, right top, from(#3990FF), to(#196FDD));
  background: linear-gradient(90deg, #3990FF, #196FDD);
  border-radius: 50%;
}

/* ホバー時（元のノーマル状態に戻す） */
@media (hover: hover) {
  .btn-rev-hover:hover::before {
    opacity: 0;
  }
  .btn-rev-hover:hover .btn-rev-text {
    color: #252D3E;
  }
  .btn-rev-hover:hover .btn-rev-dot {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
    background: -webkit-gradient(linear, left top, right top, from(#3990FF), to(#196FDD));
    background: linear-gradient(90deg, #3990FF, #196FDD);
  }
  .btn-rev-hover:hover .btn-rev-dot-white {
    -webkit-transform: translateY(-50%) scale(0);
            transform: translateY(-50%) scale(0);
  }
}
/* グラデーションボタン1 */
.gradation-btn1 {
  position: relative;
  display: block;
  padding-block: 0.9375rem;
  padding-inline: 1rem;
  text-align: center;
  font-size: 0.9375rem;
  color: #FFF;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.02em;
  margin-inline: auto;
  border-radius: 3.125rem;
  background: -webkit-gradient(linear, left top, right top, from(#3990FF), to(#196FDD));
  background: linear-gradient(to right, #3990FF, #196FDD);
  overflow: hidden;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
  z-index: 0;
}
.gradation-btn1::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background: -webkit-gradient(linear, left top, right top, from(#3990FF), to(#196FDD));
  background: linear-gradient(to right, #3990FF, #196FDD);
  -webkit-mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)) content-box, -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: 2;
}
.gradation-btn1::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: #fff;
  z-index: 1;
  -webkit-transition: width 0.3s ease-in-out;
  transition: width 0.3s ease-in-out;
}
.gradation-btn1 span {
  display: block;
  position: relative;
  color: #FFF;
  z-index: 3;
  -webkit-transition: color 0.5s ease;
  transition: color 0.5s ease;
}
.gradation-btn1 span::after {
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  right: 0.75rem;
  width: 0.5rem;
  height: 0.5rem;
  background: #FFF;
  border-radius: 100vmax;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}
@media (any-hover: hover) {
  .gradation-btn1:hover::after {
    width: 100%;
  }
  .gradation-btn1:hover span {
    background: -webkit-gradient(linear, left top, right top, from(#3990FF), to(#196FDD));
    background: linear-gradient(to right, #3990FF, #196FDD);
    -webkit-background-clip: text;
            background-clip: text;
    color: transparent;
  }
  .gradation-btn1:hover span::after {
    background: -webkit-gradient(linear, left top, right top, from(#3990FF), to(#196FDD));
    background: linear-gradient(to right, #3990FF, #196FDD);
  }
}
.gradation-btn1:not(:hover) .gradation-btn1::after {
  width: 0;
  -webkit-transition: width 0.3s ease-in-out;
  transition: width 0.3s ease-in-out;
}

.page-contents {
  padding-block: 2.5rem 5rem;
}
@media (min-width: 787px) {
  .page-contents {
    padding-block: 5rem;
  }
}

.page-contents__inner {
  width: 70rem;
  max-width: 100%;
  margin-inline: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.5rem;
}
@media (min-width: 787px) {
  .page-contents__inner {
    width: 70rem;
    gap: 5rem;
  }
}

.orange-btn,
.blue-btn {
  display: block;
  font-size: 0.9375rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
  font-weight: 700;
  color: #FFF;
  padding-block: 1rem;
  background: linear-gradient(135deg, #FFBD4A 0%, #F29600 100%);
  border-radius: 3.125rem;
  width: 13.75rem;
  max-width: 100%;
  height: 3.5rem;
  text-align: center;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.orange-btn:hover,
.blue-btn:hover {
  opacity: 0.8;
}

.blue-btn {
  background: -webkit-gradient(linear, left top, right top, from(#3990FF), to(#196FDD));
  background: linear-gradient(to right, #3990FF, #196FDD);
}

.sns-btn-share {
  margin-top: 2rem;
  padding-inline: 1.5rem;
}
@media (min-width: 787px) {
  .sns-btn-share {
    padding-inline: initial;
  }
}
.sns-btn-share .sns-btn {
  width: 16.25rem;
  max-width: 100%;
  display: block;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #06C755;
  letter-spacing: 0.04em;
  padding: 1rem 1.5rem 1rem 2rem;
  border: 1px solid #06C755;
  border-radius: 6.25rem;
  position: relative;
}
.sns-btn-share .sns-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 2rem;
  translate: 0 -50%;
  width: 1.5rem;
  height: 1.5rem;
  background: url(../img/webp/line-icon.webp) no-repeat center center/contain;
}

/* =========================================
シングルページ共通
========================================= */
.single-content {
  padding-block: 2.5rem 3.5rem;
  padding-inline: 1.5rem;
}
@media (min-width: 787px) {
  .single-content {
    padding-inline: initial;
  }
}
.single-content .wp-block-table {
  margin-block: 2rem 0;
}
.single-content .wp-block-table td,
.single-content .wp-block-table th {
  font-size: 1rem;
  line-height: 1.8;
  padding: 1rem;
  border: 1px solid #D0D0D0;
  color: #333;
}
@media (min-width: 787px) {
  .single-content .wp-block-table td,
  .single-content .wp-block-table th {
    padding: 1rem 1.5rem;
  }
}
.single-content .single-content__table-1 tbody tr > td:first-child {
  font-weight: 700;
  background: #F5F5F5;
  white-space: nowrap;
}
@media (min-width: 787px) {
  .single-content .single-content__table-1 tbody tr > td:first-child {
    white-space: initial;
  }
}
.single-content h2.wp-block-heading {
  margin-block: 2rem;
  padding: 1rem 1.5rem;
  background: #ECF6FD;
}
.single-content h2.wp-block-heading span {
  background: -webkit-gradient(linear, left top, right top, from(#3990FF), to(#196FDD));
  background: linear-gradient(to right, #3990FF, #196FDD);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: 0.05em;
}
@media (min-width: 787px) {
  .single-content h2.wp-block-heading span {
    font-size: 1.875rem;
    line-height: 1.2;
  }
}
.single-content h3.wp-block-heading {
  margin-block: 3.5rem 2rem;
  position: relative;
  padding-bottom: 1.5rem;
}
@media (min-width: 787px) {
  .single-content h3.wp-block-heading {
    padding-bottom: 2rem;
  }
}
.single-content h3.wp-block-heading span {
  background: -webkit-gradient(linear, left top, right top, from(#3990FF), to(#196FDD));
  background: linear-gradient(to right, #3990FF, #196FDD);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.25rem;
  line-height: 1.2;
  letter-spacing: 0.05em;
  font-weight: 700;
}
@media (min-width: 787px) {
  .single-content h3.wp-block-heading span {
    font-size: 1.5rem;
    line-height: 1.28;
  }
}
.single-content h3.wp-block-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: -webkit-gradient(linear, left top, right top, from(#3990FF), to(#196FDD));
  background: linear-gradient(to right, #3990FF, #196FDD);
}
.single-content h4.wp-block-heading,
.single-content h5.wp-block-heading,
.single-content h6.wp-block-heading {
  margin-block: 3.5rem 2rem;
}
.single-content h4.wp-block-heading span,
.single-content h5.wp-block-heading span,
.single-content h6.wp-block-heading span {
  background: -webkit-gradient(linear, left top, right top, from(#3990FF), to(#196FDD));
  background: linear-gradient(to right, #3990FF, #196FDD);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.25rem;
  line-height: 1.2;
  letter-spacing: 0.05em;
  font-weight: 700;
}
@media (min-width: 787px) {
  .single-content h4.wp-block-heading span,
  .single-content h5.wp-block-heading span,
  .single-content h6.wp-block-heading span {
    font-size: 1.375rem;
    line-height: 1.28;
  }
}
.single-content h4.wp-block-heading,
.single-content h5.wp-block-heading,
.single-content h6.wp-block-heading {
  padding-left: 1em;
  border-left: 0.25rem solid #196FDD;
}
.single-content p:first-child {
  margin-top: 0;
}
.single-content p {
  font-size: 0.9375rem;
  line-height: 1.8;
  letter-spacing: 0.02em;
  font-weight: 400;
  color: #252D3E;
  margin-top: 1.5rem;
}
@media (min-width: 787px) {
  .single-content p {
    font-size: 1rem;
  }
}
.single-content p a {
  color: #196FDD;
  display: inline-block;
  text-decoration: underline;
  -webkit-text-decoration-color: #196FDD;
          text-decoration-color: #196FDD;
  text-underline-offset: 0.125rem;
  font-weight: 500;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  .single-content p a:hover {
    opacity: 0.7;
  }
}
.single-content ul.wp-block-list {
  margin-block: 2rem;
}
.single-content ul.wp-block-list > li {
  position: relative;
  padding-left: 1em;
  line-height: 1.6;
  font-size: 0.9375rem;
  letter-spacing: 0.02em;
  color: #252D3E;
}
@media (min-width: 787px) {
  .single-content ul.wp-block-list > li {
    font-size: 1rem;
    line-height: 1.8;
  }
}
.single-content ul.wp-block-list > li > strong {
  display: block;
}
@media (min-width: 787px) {
  .single-content ul.wp-block-list > li > strong {
    display: inline;
  }
}
.single-content ul.wp-block-list > li:nth-child(n+2) {
  margin-top: 1rem;
}
.single-content ul.wp-block-list > li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5lh;
  translate: 0 -50%;
  width: 0.5rem;
  height: 0.5rem;
  background: -webkit-gradient(linear, left top, right top, from(#3990FF), to(#196FDD));
  background: linear-gradient(to right, #3990FF, #196FDD);
  border-radius: 100vmax;
}
.single-content .single-content__bg-list {
  padding: 1.5rem;
  background: #ECF6FD;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  margin-block: 2rem;
}
.single-content .single-content__bg-list .wp-block-list {
  margin-block: 0;
}
.single-content .wp-block-image {
  margin-top: 2rem;
}
.single-content .wp-block-image img {
  width: 100%;
  height: 100%;
}
.single-content .single-content__summary {
  border: 0.125rem solid #DFE9F3;
  background-color: #FFF;
  border-radius: 0.25rem;
  padding: 2rem 1.5rem;
  margin-top: 2rem;
}
.single-content .single-content__summary .wp-block-list {
  margin-block: 1.5rem 0;
}
.single-content .single-content__summary ol,
.single-content .single-content__summary ul {
  padding-left: 0;
  margin-left: 0;
}
.single-content .single-content__summary-title-wrap {
  position: relative;
  padding-bottom: 1rem;
}
.single-content .single-content__summary-title-wrap::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: -webkit-gradient(linear, left top, right top, from(#3990FF), to(#196FDD));
  background: linear-gradient(to right, #3990FF, #196FDD);
}
.single-content h2.wp-block-heading.single-content__summary-title {
  background: none;
  margin-block: 0;
  padding: 0;
}
.single-content h2.wp-block-heading.single-content__summary-title span {
  background: -webkit-gradient(linear, left top, right top, from(#3990FF), to(#196FDD));
  background: linear-gradient(to right, #3990FF, #196FDD);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.25rem;
  line-height: 1.28;
  letter-spacing: 0.05em;
  font-weight: 700;
}

.has-small-font-size {
  font-size: 0.75rem !important;
}

.has-medium-font-size {
  font-size: 1.125rem !important;
}

.has-large-font-size {
  font-size: 1.25rem !important;
}

.has-x-large-font-size {
  font-size: 2.1875rem !important;
}

.wp-block-group.is-style-summary-box-editable.is-vertical.is-layout-flex.wp-container-core-group-is-layout-8cf370e7.wp-block-group-is-layout-flex .wp-block-heading.is-style-h3-gradient-underline {
  margin-block: 2rem 1.5rem !important;
}

.wp-block-table__cell-content {
  background: #F5F5F5;
}

.has-text-align-center img {
  margin-left: auto;
  margin-right: auto;
}

.sidebar {
  width: 21.375rem;
  max-width: 100%;
  margin-inline: auto;
}
@media (min-width: 787px) {
  .sidebar {
    width: 20rem;
  }
}

.sidebar__content {
  background: #F4F6F8;
  border-radius: 0.25rem;
  padding: 1.5rem 1.5rem 2.5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3.5rem;
}

.sidebar__content-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
}

.sidebar__content-title-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1em;
}
.sidebar__content-title-wrap::after {
  content: "";
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 2px;
  background: -webkit-gradient(linear, left top, right top, from(#3990FF), to(#196FDD));
  background: linear-gradient(to right, #3990FF, #196FDD);
}

.sidebar__content-title {
  background: linear-gradient(135deg, #004098 0%, #3990FF 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  font-size: 1.125rem;
  font-weight: 700;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.sidebar__content-items,
.sidebar__content-lists {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 0.5rem;
}

.sidebar__content-item a {
  display: block;
  font-size: 0.875rem;
  color: #002E6E;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  border: 0.0625rem solid #9AACC6;
  line-height: 1;
}

.sidebar__content-list a {
  padding-block: 1rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  color: #252D3E;
  text-decoration: none;
  -webkit-transition: color 0.3s ease, -webkit-text-decoration-color 0.3s ease;
  transition: color 0.3s ease, -webkit-text-decoration-color 0.3s ease;
  transition: color 0.3s ease, text-decoration-color 0.3s ease;
  transition: color 0.3s ease, text-decoration-color 0.3s ease, -webkit-text-decoration-color 0.3s ease;
}
@media (any-hover: hover) {
  .sidebar__content-list a:hover .sidebar__content-list-title {
    color: #196FDD;
    text-decoration: underline;
    -webkit-text-decoration-color: #196FDD;
            text-decoration-color: #196FDD;
  }
}
.sidebar__content-list:not(:last-child) {
  border-bottom: 1px solid #EBEDF1;
}

.sidebar__content-list-img {
  width: 5.5rem;
  max-width: 100%;
  height: 3.0625rem;
}
.sidebar__content-list-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.sidebar__content-list-body {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.sidebar__content-list-title {
  font-size: 0.875rem;
  line-height: 1.4;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.sidebar__cta {
  display: none;
}
@media (min-width: 787px) {
  .sidebar__cta {
    background: url(../img/webp/sidebar-cta-bg.webp) no-repeat center center/cover;
    margin-top: 1.5rem;
    padding: 1.5rem 2rem;
    border: 1px solid #EBEDF1;
    border-radius: 0.25rem;
    text-align: center;
    display: block;
  }
}
.sidebar__cta .contact-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.sidebar__cta .contact__btn {
  width: 15.625rem;
  max-width: 100%;
  margin-inline: auto;
  height: 4rem;
}
.sidebar__cta .contact__btn.--contact {
  line-height: 1;
}
.sidebar__cta .contact__btn.--contact .contact__btn-text {
  font-size: 1rem;
}
.sidebar__cta .contact__btn-text {
  font-size: 0.75rem;
  font-weight: 700;
}
.sidebar__cta .contact__btn-tel {
  font-size: 1.375rem;
  letter-spacing: -0.03em;
  font-weight: 400;
  font-family: "Work Sans", sans-serif;
  line-height: 1;
}

.sidebar__cta-title {
  font-size: 1.5rem;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.05em;
  background: -webkit-gradient(linear, left top, right top, from(#3990FF), to(#196FDD));
  background: linear-gradient(to right, #3990FF, #196FDD);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}

.sidebar__cta-text {
  font-size: 0.875rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
}

.single-container {
  padding-block: 2.5rem;
}
@media (min-width: 787px) {
  .single-container {
    padding-inline: 1.25rem;
    padding-block: 2.5rem 6.25rem;
  }
}
.single-container.--news, .single-container.--page {
  background: #FFF;
}
.single-container.--news .single-container__wrap, .single-container.--page .single-container__wrap {
  width: 60rem;
}
@media (min-width: 787px) {
  .single-container.--blog {
    padding-inline: 7.5rem 3.5rem;
  }
}

.single-container__wrap {
  width: 79.0625rem;
  max-width: 100%;
  margin-inline: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3.5rem;
}
@media (min-width: 787px) {
  .single-container__wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 4rem;
  }
}

.single-container__main {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.single-content__cta {
  background: url(../img/webp/single-cta-bg-sp.webp) no-repeat center center/cover;
  padding: 1.75rem 1.5rem;
  border-radius: 0.25rem;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 787px) {
  .single-content__cta {
    background: url(../img/webp/single-cta-bg-pc.webp) no-repeat center center/cover;
    padding: 2rem 3.5rem;
    gap: 1rem;
  }
}
.single-content__cta::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 18.875rem;
  height: 16.375rem;
  background: url(../img/webp/clip-person-5-sp.webp) no-repeat center center/cover;
}
@media (min-width: 787px) {
  .single-content__cta::after {
    width: 18.5625rem;
    height: 12.5625rem;
    background: url(../img/webp/clip-person-5-pc.webp) no-repeat center center/cover;
  }
}
.single-content__cta .contact-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0.5rem;
}
@media (min-width: 787px) {
  .single-content__cta .contact-wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.single-content__cta .contact-wrap .contact__btn {
  width: 15.625rem;
  max-width: 100%;
  height: 4rem;
}
@media (min-width: 787px) {
  .single-content__cta .contact-wrap .contact__btn {
    width: 17.5rem;
  }
}
.single-content__cta .contact-wrap .contact__btn.--phone {
  background: -webkit-gradient(linear, left top, right top, from(#004098), to(#3990FF));
  background: linear-gradient(to right, #004098, #3990FF);
  border: 1px solid #FFF;
}
.single-content__cta .contact-wrap .contact__btn.--phone::after {
  background: transparent;
}
.single-content__cta .contact-wrap .contact__btn.--contact .contact__btn-text {
  font-size: 1.125rem;
  line-height: 1;
}
.single-content__cta .contact-wrap .contact__btn.--sp {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media (min-width: 787px) {
  .single-content__cta .contact-wrap .contact__btn.--sp {
    display: none;
  }
}
.single-content__cta .contact-wrap .contact__btn.--sp .contact__btn-text {
  font-size: 1.125rem;
  line-height: 1.28;
  letter-spacing: 0.05em;
  font-weight: 700;
}
.single-content__cta .contact-wrap .contact__btn.--pc {
  display: none;
}
@media (min-width: 787px) {
  .single-content__cta .contact-wrap .contact__btn.--pc {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    background: transparent;
  }
}
.single-content__cta .contact-wrap .contact__btn-tel {
  font-size: 1.625rem;
  font-weight: 500;
  letter-spacing: -0.03em;
  font-family: "Work Sans", sans-serif;
  line-height: 1;
}

.single-content__cta-title-wrap {
  color: #FFF;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.25rem;
}

.single-content__cta-title {
  font-size: 1.5rem;
  line-height: 1.28;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.single-content__cta-text {
  font-size: 0.875rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.single-content__keyword {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 21.375rem;
  max-width: 100%;
  margin-inline: auto;
  gap: 1rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #D2D2D2;
  margin-top: 2.5rem;
}
@media (min-width: 787px) {
  .single-content__keyword {
    width: 100%;
    gap: 2.5rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-top: 3.5rem;
  }
}

.single-content__keyword-title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.single-content__keyword-items {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
}

.single-content__keyword-item a {
  border: 1px solid #9AACC6;
  border-radius: 0.25rem;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.05em;
  padding: 0.4375rem 1rem;
  color: #002E6E;
  display: block;
}

.page-fv.page-single .section__title-en {
  display: none;
}

.single-content-thumbnail {
  border-radius: 0.0625rem;
  max-width: 100%;
  width: 21.375rem;
  height: 11.75rem;
  margin-inline: auto;
}
@media (min-width: 787px) {
  .single-content-thumbnail {
    width: 100%;
    height: auto;
    border-radius: 0.25rem;
  }
}
.single-content-thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.sports {
  overflow: hidden;
  background: url(../img/webp/sports-bg-sp.webp) no-repeat center center/cover;
}
@media (min-width: 787px) {
  .sports {
    background: url(../img/webp/sports-bg-pc.webp) no-repeat center center/cover;
  }
}

.sports__inner {
  padding-block: 6rem 18.4375rem;
  width: 43.5rem;
  max-width: 100%;
  margin-inline: auto;
  position: relative;
}
@media (min-width: 787px) {
  .sports__inner {
    padding-block: 5.6875rem;
  }
}
.sports__inner::before, .sports__inner::after {
  content: "";
  position: absolute;
  bottom: 0;
}
.sports__inner::before {
  width: 10.875rem;
  height: 20rem;
  left: -6%;
  background: url(../img/webp/clip-person-1.webp) no-repeat center center/cover;
}
@media (min-width: 787px) {
  .sports__inner::before {
    width: 22.4375rem;
    height: 40.9375rem;
    left: -50%;
  }
}
.sports__inner::after {
  width: 12.0625rem;
  height: 20rem;
  right: 0;
  background: url(../img/webp/clip-person-2.webp) no-repeat center center/contain;
}
@media (min-width: 787px) {
  .sports__inner::after {
    width: 24.8125rem;
    height: 41.5625rem;
    right: -50%;
  }
}

.sports__content {
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
  position: relative;
  padding-inline: 1.5rem;
}
@media (min-width: 787px) {
  .sports__content {
    gap: 1.5rem;
    padding-inline: initial;
  }
}
.sports__content::after {
  content: "";
  position: absolute;
  bottom: -38%;
  right: -8%;
  width: 7.5rem;
  height: 7.9375rem;
  z-index: 1;
  background: url(../img/webp/sports-treat.webp) no-repeat center center/contain;
}
@media (min-width: 787px) {
  .sports__content::after {
    bottom: -25%;
    right: -32%;
    width: 12rem;
    height: 12.875rem;
  }
}

.sports__title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 787px) {
  .sports__title {
    gap: 1rem;
  }
}

.sports__title-text {
  width: 15.8125rem;
  max-width: 100%;
  border-radius: 6.25rem;
  margin-inline: auto;
  padding-block: 0.5rem;
  padding-inline: 2rem;
  background: -webkit-gradient(linear, left top, right top, from(#3990FF), to(#196FDD));
  background: linear-gradient(to right, #3990FF, #196FDD);
  font-size: 1.125rem;
  color: #FFF;
  font-weight: 700;
  letter-spacing: 0.05em;
  position: relative;
  white-space: nowrap;
}
@media (min-width: 787px) {
  .sports__title-text {
    font-size: 1.25rem;
    width: 27rem;
    border-radius: 3.125rem;
  }
}
.sports__title-text span {
  color: #FFF07F;
}
.sports__title-text::after {
  content: "";
  position: absolute;
  left: 50%;
  translate: -50%;
  bottom: -0.4375rem;
  width: 1.5rem;
  height: 0.5rem;
  background: url(../img/svg/bubble-triangle.svg) no-repeat center center/contain;
}

.sports__title-main {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
}
@media (min-width: 787px) {
  .sports__title-main {
    font-size: 2.5rem;
  }
}
.sports__title-main .small {
  font-size: 1.5rem;
  line-height: 1.4;
}
@media (min-width: 787px) {
  .sports__title-main .small {
    font-size: 2rem;
  }
}

.sports__text {
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.6;
  text-align: left;
  letter-spacing: 0.02em;
  padding-inline: 1rem;
}
@media (min-width: 787px) {
  .sports__text {
    font-weight: 700;
    text-align: center;
    padding-inline: initial;
  }
}

.sports__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2.5rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 787px) {
  .sports__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-column-gap: 1.5rem;
       -moz-column-gap: 1.5rem;
            column-gap: 1.5rem;
  }
}

.sports__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}

.sports__item-img {
  width: 21.375rem;
  max-width: 100%;
  margin-inline: auto;
  height: 7.875rem;
  border-radius: 0.625rem;
  -webkit-box-shadow: 4px 8px 24px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 4px 8px 24px 0 rgba(0, 0, 0, 0.15);
}
@media (min-width: 787px) {
  .sports__item-img {
    width: 21rem;
  }
}
.sports__item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.sports__item-content {
  font-weight: 700;
  color: #051E46;
}
.sports__item-content.--kawagoefc {
  color: #C9A063;
}

.sports__item-title {
  font-size: 1.25rem;
  line-height: 1.28;
  letter-spacing: 0.05em;
}

.sports__item-text {
  font-size: 0.875rem;
  font-weight: 700;
  margin-top: 1rem;
}
.staff {
  padding-block: 2.5rem;
  background: #FFF;
}
@media (min-width: 787px) {
  .staff {
    padding-block: 5rem 2.5rem;
  }
}

.staff__inner {
  width: 100%;
  max-width: 100%;
  margin-inline: auto;
  padding-inline: 1.5rem;
}
@media (min-width: 787px) {
  .staff__inner {
    width: 70rem;
    padding-inline: initial;
  }
}

.staff-greeting {
  background: #DFE9F3;
  padding-block: 10.625rem 5rem;
}
.staff-greeting .section__title-wrap {
  position: relative;
  width: 20rem;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.staff-greeting .section__title-wrap::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2rem;
  width: 100%;
  height: 1px;
  background: -webkit-gradient(linear, left top, right top, from(#004098), to(#3990FF));
  background: linear-gradient(to right, #004098, #3990FF);
}
.staff-greeting .staff-greeting__title {
  background: linear-gradient(135deg, #004098 0%, #3990FF 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}

.staff-greeting__inner {
  width: 70rem;
  max-width: 100%;
  margin-inline: auto;
  position: relative;
}

.staff-greeting__img {
  width: 47rem;
  height: 22.5rem;
}
.staff-greeting__img img {
  width: 100%;
  height: 100%;
}
.staff-greeting__img {
  position: absolute;
  right: 0;
  top: -17.5rem;
  z-index: 1;
}

.staff-greeting__items {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
  width: 70rem;
  max-width: 100%;
  margin-inline: auto;
}

.staff-greeting__item {
  background: url(../img/webp/staff-bg-sp.webp) no-repeat center center/cover;
  padding: 1.5rem;
  border-radius: 0.25rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
  border: 0.125rem solid #DFE9F3;
  position: relative;
}
@media (min-width: 787px) {
  .staff-greeting__item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    padding: 2.5rem 5rem 2.5rem 2.5rem;
    background: url(../img/webp/staff-bg-pc.webp) no-repeat center center/cover;
  }
}
.staff-greeting__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 18.4375rem;
  height: 20.625rem;
  z-index: 2;
  background: url(../img/webp/box-shadow.webp) no-repeat center center/cover;
}

.staff-greeting__item-img {
  width: 100%;
  height: 23.75rem;
}
@media (min-width: 787px) {
  .staff-greeting__item-img {
    width: 15.5rem;
    height: 20rem;
  }
}
.staff-greeting__item-img img {
  width: 100%;
  height: 100%;
}

.staff-greeting__item-body {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
}

.staff-greeting__item-head {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
  padding-left: 1.5rem;
  height: 3.8125rem;
  position: relative;
}
.staff-greeting__item-head::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -50%;
  width: 0.25rem;
  height: 3.5rem;
  background: -webkit-gradient(linear, left top, left bottom, from(#3990FF), to(#196FDD));
  background: linear-gradient(to bottom, #3990FF, #196FDD);
}

.staff-greeting__item-position {
  font-size: 0.875rem;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.staff-greeting__item-name {
  font-size: 1.5rem;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.staff-greeting__item-title {
  font-size: 1.25rem;
  line-height: 1.28;
  font-weight: 700;
  background: -webkit-gradient(linear, left top, right top, from(#3990FF), to(#196FDD));
  background: linear-gradient(to right, #3990FF, #196FDD);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  text-align: justify;
}
@media (min-width: 787px) {
  .staff-greeting__item-title {
    font-size: 1.5rem;
    line-height: 1.6;
    letter-spacing: 0.05em;
  }
}

.staff-greeting__item-text {
  font-size: 0.9375rem;
  line-height: 1.6;
  font-weight: 500;
  text-align: justify;
}
@media (min-width: 787px) {
  .staff-greeting__item-text {
    letter-spacing: 0.02em;
  }
}

.staff-greeting__item-introduction dl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
}

.staff-greeting__item-textarea {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
}

.staff-greeting__item-introduction-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5rem;
}

.staff-greeting__item-introduction-item-title {
  font-size: 0.9375rem;
  line-height: 1.6;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding-left: 1rem;
  position: relative;
  width: 4.6875rem;
  white-space: nowrap;
  max-width: 100%;
}
.staff-greeting__item-introduction-item-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -50%;
  width: 0.5rem;
  height: 0.5rem;
  background: -webkit-gradient(linear, left top, right top, from(#3990FF), to(#196FDD));
  background: linear-gradient(to right, #3990FF, #196FDD);
  border-radius: 100vmax;
}

.staff-greeting__item-introduction-item-text {
  font-size: 0.9375rem;
  line-height: 1.6;
  font-weight: 500;
  letter-spacing: 0.02em;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.staff-greeting__item-none {
  text-align: center;
  font-size: 0.9375rem;
  line-height: 1.6;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.status {
  position: relative;
  margin-top: -6.25rem;
  z-index: 1;
  padding-bottom: 5rem;
}
@media (min-width: 787px) {
  .status {
    margin-top: -2.5rem;
    padding-bottom: 5.625rem;
  }
}

.status__inner {
  width: 22.375rem;
  max-width: 100%;
  margin-inline: auto;
}
@media (min-width: 787px) {
  .status__inner {
    width: 75rem;
  }
}

.status__box {
  border-radius: 0.25rem;
  padding: 1.5rem 1rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.25rem;
}
@media (min-width: 787px) {
  .status__box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    padding: 2rem 2.5rem 2rem 7.5rem;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 2rem;
  }
}
.status__box.--contact {
  background: #F5F5F5;
}
.status__box.--news {
  margin-top: 1rem;
  background: #DFE9F3;
  padding: 2.53125rem 1rem 1.5rem;
}
@media (min-width: 787px) {
  .status__box.--news {
    padding: 2rem 2.5rem 2rem 7.5rem;
  }
}

.status__box-title-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
  width: 100%;
  text-align: center;
}
@media (min-width: 787px) {
  .status__box-title-wrap {
    position: relative;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 17rem;
        -ms-flex: 0 0 17rem;
            flex: 0 0 17rem;
    width: initial;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    white-space: nowrap;
  }
  .status__box-title-wrap::before {
    content: "";
    position: absolute;
    left: -5rem;
    top: 50%;
    translate: 0 -50%;
    width: 4rem;
    height: 4rem;
    background: url(../img/webp/status-contact-icon.webp) no-repeat center center/cover;
  }
}

.status__box-titlel {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: left;
  padding-left: 5rem;
  line-height: 1.2;
  position: relative;
  letter-spacing: 0.05em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media (min-width: 787px) {
  .status__box-titlel {
    text-align: center;
    padding-left: initial;
    line-height: initial;
  }
}
.status__box-titlel::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -50%;
  width: 4rem;
  height: 4rem;
  background: url(../img/webp/status-contact-icon.webp) no-repeat center center/cover;
}
@media (min-width: 787px) {
  .status__box-titlel::before {
    display: none;
  }
}

.status__box-subtitlel {
  color: #6D7075;
  font-size: 0.875rem;
  line-height: 1.6;
  padding: 0.25rem 1rem;
  background: #FFF;
  border-radius: 3.125rem;
  display: inline-block;
  width: 100%;
}
@media (min-width: 787px) {
  .status__box-subtitlel {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}

.status-box__list-wrap {
  background: #FDFDFD;
  padding: 2rem 0.5rem 2rem 1.125rem;
  height: 11.6875rem;
  width: 20.375rem;
  border-radius: 0.25rem;
}
@media (min-width: 787px) {
  .status-box__list-wrap {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
    height: 10.125rem;
    min-width: 0;
    padding: 2rem;
    border-radius: 0.125rem;
  }
}

.status-box__list li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  margin-right: 1.5rem;
}
@media (min-width: 787px) {
  .status-box__list li {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-right: 2rem;
  }
}
.status-box__list li:nth-child(n+2) {
  margin-top: 1rem;
}
.status-box__list li:not(:last-child) {
  border-bottom: 1px solid #D3D5D8;
  font-size: 1rem;
  padding-bottom: 1rem;
}
.status-box__list li .date {
  width: 3.875rem;
  max-width: 100%;
  font-size: 0.75rem;
  color: #A4AAB2;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.02em;
  font-family: "Work Sans", sans-serif;
}
.status-box__list li .text {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 0.875rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
  font-weight: 500;
}
.status-box__list li .tag {
  font-family: "Work Sans", sans-serif;
  font-size: 0.625rem;
  font-weight: 400;
  line-height: 1.4;
  color: #FFF;
  background: #196FDD;
  border-radius: 0.25rem;
  padding: 0.125rem 0.25rem;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  display: inline-block;
}
@media (min-width: 787px) {
  .status-box__list li .tag {
    border-radius: 0.0625rem;
  }
}
.status-box__list li .tag--hidden {
  display: none;
}
@media (min-width: 787px) {
  .status-box__list li .tag--hidden {
    display: block;
    visibility: hidden;
  }
}
.status-box__list li .head {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
}

.scroll-area {
  height: 100%;
  width: 100%;
}

/* simplebar用 */
.simplebar-track {
  border-radius: 0.625rem;
}

.simplebar-track.simplebar-vertical {
  width: 9px;
}
@media (min-width: 787px) {
  .simplebar-track.simplebar-vertical {
    width: 7px;
  }
}

.simplebar-track .simplebar-scrollbar.simplebar-visible::before {
  opacity: 1;
}

.simplebar-track .simplebar-scrollbar::before {
  background: #F29600;
  height: 0.875rem;
}

.--news .simplebar-track .simplebar-scrollbar::before {
  background: #196FDD;
}
.--news .status__box-title-wrap {
  gap: 1.53125rem;
}
@media (min-width: 787px) {
  .--news .status__box-title-wrap {
    gap: 0.5rem;
  }
  .--news .status__box-title-wrap::before {
    background: url(../img/webp/status-news-icon.webp) no-repeat center center/cover;
  }
}
.--news .status__box-titlel::before {
  background: url(../img/webp/status-news-icon.webp) no-repeat center center/cover;
}
@media (min-width: 787px) {
  .--news .status__box-titlel::before {
    display: none;
  }
}
.--news .status-box__list-wrap {
  height: 9.9375rem;
}
@media (min-width: 787px) {
  .--news .status-box__list-wrap {
    height: 15.5rem;
  }
}
.--news .status-box__list li {
  gap: 0.5rem;
}
.--news .status-box__list li .text {
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  cursor: pointer;
}
@media (any-hover: hover) {
  .--news .status-box__list li:hover .text {
    opacity: 1;
    color: #196FDD;
  }
}

.subsidy-information {
  padding-block: 2.5rem 5rem;
  background: url(../img/svg/subsidy-information-bg-sp.svg) no-repeat center center/cover;
}
@media (min-width: 787px) {
  .subsidy-information {
    padding-block: 6.25rem;
    background: url(../img/webp/subsidy-information-bg-pc.webp) no-repeat center center/cover;
  }
}

.subsidy-information__inner {
  padding-inline: 1.5rem;
  width: 70rem;
  max-width: 100%;
  margin-inline: auto;
}
@media (min-width: 787px) {
  .subsidy-information__inner {
    padding-inline: 0;
  }
}

.subsidy-information__title-wrap {
  border-bottom: 1px solid #FFF;
  padding-block: 2.5rem;
}

.subsidy-information__title {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #FFF;
  line-height: 1.2;
  text-align: center;
}
@media (min-width: 787px) {
  .subsidy-information__title {
    font-size: 2.5rem;
  }
}

.subsidy-information__text {
  font-size: 0.9375rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
  font-weight: 500;
  color: #FFF;
  margin-top: 2.25rem;
}
@media (min-width: 787px) {
  .subsidy-information__text {
    text-align: center;
  }
}
.subsidy-information__text span {
  color: #f29600;
  margin-top: 4.75rem;
}

.subsidy-information__items {
  margin-top: 6.75rem;
  width: 100%;
  max-width: 100%;
  margin-inline: auto;
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-grid-columns: (1fr)[1];
  grid-template-columns: repeat(1, 1fr);
  gap: 5.5625rem;
}
@media (min-width: 787px) {
  .subsidy-information__items {
    margin-top: 7.25rem;
    -ms-grid-columns: (1fr)[4];
    grid-template-columns: repeat(4, 1fr);
    width: 70rem;
    gap: 1rem;
  }
}

.subsidy-information__item {
  background: #FFF;
  border-radius: 0.25rem;
  padding: 2.5rem 1.3125rem 1.75rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.875rem;
  position: relative;
}
@media (min-width: 787px) {
  .subsidy-information__item {
    padding: 2.5rem 1.3125rem 2rem;
    gap: 1rem;
    height: 16rem;
  }
}
@media (min-width: 787px) {
  .subsidy-information__item:nth-child(4) {
    height: 16.25rem;
  }
}
@media (min-width: 787px) {
  .subsidy-information__item:nth-child(4) .subsidy-information__item-title {
    font-size: 1.0625rem;
    letter-spacing: 0;
    -webkit-font-feature-settings: "palt";
            font-feature-settings: "palt";
  }
}

.subsidy-information__item-head {
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  color: #FFF;
  text-align: center;
  font-weight: 700;
  width: 10.1875rem;
  max-width: 100%;
  border-radius: 3.125rem;
  margin-inline: auto;
  padding-block: 0.5rem;
  padding-inline: 2.5rem;
  background: linear-gradient(135deg, #ffbd4a 0%, #f29600 100%);
  position: absolute;
  left: 50%;
  translate: -50%;
  top: -1.5625rem;
  white-space: nowrap;
}
.subsidy-information__item-head span {
  font-weight: 900;
}
.subsidy-information__item-head::after {
  content: "";
  position: absolute;
  left: 50%;
  translate: -50%;
  bottom: -0.4375rem;
  width: 1.5rem;
  height: 0.5rem;
  background: url(../img/svg/orange-triangle.svg) no-repeat center center/contain;
}
.subsidy-information__item-head::before {
  content: "";
  position: absolute;
  left: 50%;
  translate: -50%;
  top: -3.125rem;
  width: 5.0625rem;
  height: 2.4375rem;
  aspect-ratio: 81/39;
  background: url(../img/webp/three-stars.webp) no-repeat center center/contain;
}

.subsidy-information__item-title {
  font-size: 1.25rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  text-align: center;
  line-height: 1.28;
  letter-spacing: 0.05em;
  font-weight: 700;
  background: -webkit-gradient(linear, left top, right top, from(#3990ff), to(#196fdd));
  background: linear-gradient(to right, #3990ff, #196fdd);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
@media (min-width: 787px) {
  .subsidy-information__item-title {
    font-size: 1.5rem;
  }
}

.subsidy-information__item-box {
  border-radius: 0.625rem;
  background: linear-gradient(135deg, #ffbd4a 0%, #f29600 100%);
  color: #FFF;
  font-size: 1.25rem;
  line-height: 1.7;
  letter-spacing: 0.05em;
  font-weight: 700;
  width: 100%;
  max-width: 100%;
  height: 4.375rem;
  margin-inline: auto;
  place-content: center;
  text-align: center;
}
@media (min-width: 787px) {
  .subsidy-information__item-box {
    font-size: 1.5rem;
    width: 13.5rem;
    height: 4.75rem;
  }
}
.subsidy-information__item-box strong {
  font-size: 2rem;
  line-height: 1.2;
  letter-spacing: 0.05em;
  font-weight: 600;
  vertical-align: bottom;
}
@media (min-width: 787px) {
  .subsidy-information__item-box strong {
    font-size: 2.5rem;
  }
}

.subsidy-information__item-note {
  font-size: 0.875rem;
  line-height: 1.6;
  font-weight: 500;
  color: #252D3E;
  text-align: center;
}

.subsidy-information__btn {
  margin-top: 2.5rem;
}
.subsidy-information__btn .section-btn {
  width: 24.375rem;
  height: 4.5rem;
  margin-inline: auto;
  padding-block: 0.75rem;
}
@media (min-width: 787px) {
  .subsidy-information__btn .section-btn {
    height: 3.375rem;
  }
}

.top-subsidy {
  padding-block: 6.25rem 17.125rem;
  background: url(../img/webp/top-subsidy-bg-sp.webp) no-repeat center center/cover;
  position: relative;
}
@media (min-width: 787px) {
  .top-subsidy {
    padding-block: 6.25rem;
    background: url(../img/webp/top-subsidy-bg-pc.webp) no-repeat center center/cover;
  }
}
.top-subsidy .section__title-wrap {
  position: relative;
}
.top-subsidy .section__title-wrap::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2.5rem;
  width: 100%;
  height: 1px;
  background: #A7C8F6;
}

.top-subsidy__title {
  font-size: 2rem;
  line-height: 1.2;
  letter-spacing: 0.05em;
  color: #FFF;
}
@media (min-width: 787px) {
  .top-subsidy__title {
    font-size: 2.5rem;
  }
}

.top-subsidy__btn {
  margin-top: 1.5rem;
}
.top-subsidy__btn .section-btn {
  width: 18rem;
}

.top-subsidy__inner {
  padding-inline: 1.5rem;
}
@media (min-width: 787px) {
  .top-subsidy__inner {
    padding-inline: initial;
    width: 65rem;
    max-width: 100%;
    margin-inline: auto;
  }
}

.top-subsidy__content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 5rem;
  margin-top: 5rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 787px) {
  .top-subsidy__content {
    margin-top: 7.5rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.top-subsidy__body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.5rem;
}
@media (min-width: 787px) {
  .top-subsidy__body {
    gap: 4rem;
  }
}

.top-subsidy__head {
  letter-spacing: 0.05em;
  color: #FFF;
  font-size: 2rem;
  line-height: 1.3;
  font-weight: 700;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media (min-width: 787px) {
  .top-subsidy__head {
    -webkit-font-feature-settings: initial;
            font-feature-settings: initial;
  }
}
.top-subsidy__head span {
  font-size: 1.5rem;
  line-height: 1.5;
}
.top-subsidy__head strong {
  color: #F29600;
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1.2;
}
.top-subsidy__head p:nth-child(3) {
  line-height: 1.5;
}

.top-subsidy__text {
  font-size: 1.25rem;
  line-height: 1.28;
  font-weight: 700;
  color: #FFF;
  letter-spacing: 0.05em;
}
@media (min-width: 787px) {
  .top-subsidy__text {
    white-space: nowrap;
  }
}

.top-subsidy__text-small {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.6;
  color: #FFF;
  letter-spacing: 0.05em;
  margin-top: 1rem;
}
@media (min-width: 787px) {
  .top-subsidy__text-small {
    margin-top: initial;
    line-height: 1.8;
  }
}

.top-subsidy__img {
  width: 100%;
  max-width: 100%;
  padding-left: 1.5rem;
  position: absolute;
  bottom: -7%;
  right: 0;
}
@media (min-width: 787px) {
  .top-subsidy__img {
    width: 32.5rem;
    position: initial;
    padding-left: initial;
  }
}
.top-subsidy__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.thanks-case {
  background: #F4F6F8;
  padding-block: 5rem;
}
.thanks-case .case-list {
  margin-top: 3rem;
  gap: 2rem;
}
@media (min-width: 787px) {
  .thanks-case .case-list {
    margin-top: 3.5rem;
    gap: 1.5rem;
  }
}
.thanks-case .case-list__btn {
  width: 15.9375rem;
  max-width: 100%;
  margin-top: 3rem;
}
@media (min-width: 787px) {
  .thanks-case .case-list__btn {
    margin-right: initial;
  }
}
.thanks-case .case-list__btn .btn-text {
  text-indent: -0.9375rem;
}
.thanks-case .section-btn {
  width: 15.9375rem;
  height: 3.375rem;
  padding-block: 0.75rem;
}

.thanks-case__inner {
  width: 70rem;
  max-width: 100%;
  margin-inline: auto;
  padding-inline: 1.5rem;
}
@media (min-width: 787px) {
  .thanks-case__inner {
    padding-inline: initial;
  }
}
.thanks-case__inner .case-list__item {
  -webkit-box-shadow: 0 0.25rem 1.25rem 0 rgba(117, 125, 133, 0.15);
          box-shadow: 0 0.25rem 1.25rem 0 rgba(117, 125, 133, 0.15);
}

.thanks-case__title-wrap {
  text-align: center;
  position: relative;
  padding-bottom: 2rem;
}
.thanks-case__title-wrap::after {
  content: "";
  position: absolute;
  left: 50%;
  translate: -50%;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: -webkit-gradient(linear, left top, right top, from(#004098), to(#3990FF));
  background: linear-gradient(to right, #004098, #3990FF);
}

.thanks-case__title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.05em;
  background: linear-gradient(135deg, #004098 0%, #3990FF 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}

.thanks-introduction {
  padding-block: 8.4375rem 5rem;
  background: url(../img/webp/thanks-introduction-bg-sp.webp) no-repeat center bottom/cover;
}
@media (min-width: 787px) {
  .thanks-introduction {
    padding-block: 8.4375rem 5rem;
    background: url(../img/webp/thanks-introduction-bg-pc.webp) no-repeat top 4.6875rem center/cover;
  }
}

.thanks-introduction__inner {
  width: 65rem;
  max-width: 100%;
  margin-inline: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3rem;
  text-align: center;
}
@media (min-width: 787px) {
  .thanks-introduction__inner {
    gap: 4.75rem;
  }
}

.thanks-introduction__lead {
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.02em;
}

.thanks-introduction__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[1];
  grid-template-columns: repeat(1, 1fr);
  gap: 2.25rem;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media (min-width: 787px) {
  .thanks-introduction__list {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
    gap: 2.75rem;
  }
}

.thanks-introduction__item-img {
  width: 16.25rem;
  height: 9.125rem;
  max-width: 100%;
  overflow: hidden;
  border-radius: 0.125rem;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
@media (min-width: 787px) {
  .thanks-introduction__item-img {
    width: 16.4375rem;
    height: 9.25rem;
    max-width: 100%;
  }
}
.thanks-introduction__item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  will-change: transform;
}

.thanks-introduction__item-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #196FDD;
  line-height: 1.28;
  letter-spacing: 0.05em;
}

.thanks-introduction__item-text {
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.02em;
  text-align: left;
  margin-top: 1rem;
  text-align: justify;
}

.thanks-introduction__item-btn {
  width: 15.3125rem;
  max-width: 100%;
  margin-inline: auto;
  margin-top: auto;
}

.thanks-introduction__btn {
  margin-inline: auto;
}
.thanks-introduction__btn .section-btn {
  width: 19.375rem;
}
@media (min-width: 787px) {
  .thanks-introduction__btn .section-btn {
    width: 20.875rem;
  }
}
.thanks-introduction__btn .btn-text {
  text-indent: initial;
}

.thanks-introduction__item {
  width: 19.375rem;
  max-width: 100%;
  height: 24.75rem;
  margin-inline: auto;
  padding: 1.5rem;
  background: #FFF;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  position: relative;
  border-radius: 0.25rem;
}
@media (min-width: 787px) {
  .thanks-introduction__item {
    width: initial;
    margin-inline: initial;
  }
}
.thanks-introduction__item::after {
  content: "";
  position: absolute;
  top: 0.625rem;
  right: -1.25rem;
  width: 2.5rem;
  height: 5.625rem;
  background: url(../img/webp/card-decoration-01.webp) no-repeat center center/cover;
}
@media (min-width: 787px) {
  .thanks-introduction__item::after {
    top: 1.5rem;
  }
}
.thanks-introduction__item:nth-child(2)::after {
  background: url(../img/webp/card-decoration-02.webp) no-repeat center center/cover;
}
.thanks-introduction__item:nth-child(3)::after {
  background: url(../img/webp/card-decoration-03.webp) no-repeat center center/cover;
}
@media (any-hover: hover) {
  .thanks-introduction__item:hover .thanks-introduction__item-img img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  .thanks-introduction__item:hover .gradation-btn1 {
    color: #FFF;
    position: relative;
    overflow: hidden;
  }
  .thanks-introduction__item:hover .gradation-btn1::after {
    width: 100%;
  }
  .thanks-introduction__item:hover .gradation-btn1 span {
    background: -webkit-gradient(linear, left top, right top, from(#3990FF), to(#196FDD));
    background: linear-gradient(to right, #3990FF, #196FDD);
    -webkit-background-clip: text;
            background-clip: text;
    color: transparent;
  }
  .thanks-introduction__item:hover .gradation-btn1 span::after {
    background: -webkit-gradient(linear, left top, right top, from(#3990FF), to(#196FDD));
    background: linear-gradient(to right, #3990FF, #196FDD);
  }
}
.thanks-introduction__item:not(:hover) .gradation-btn1::after {
  width: 0;
  -webkit-transition: width 0.3s ease-in-out;
  transition: width 0.3s ease-in-out;
}

/* =========================================================
   Table of Contents Plus カスタムスタイル
   ========================================================= */
/* TOC全体の枠 */
#toc_container {
  border: 0.125rem solid #DFE9F3;
  border-radius: 0.25rem;
  font-family: "Noto Sans JP", sans-serif;
  color: #222;
  width: 100% !important;
  display: block !important;
  margin-top: 2.5rem;
}

/* タイトル部分 */
#toc_container .toc_title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.05em;
  padding: 1rem 1.5rem;
  background: #DFE9F3;
  color: #3990FF;
  width: 100%;
  margin-block: 0;
}
@media (min-width: 787px) {
  #toc_container .toc_title {
    padding: 1rem 2.5rem;
  }
}

.toc_toggle {
  position: relative;
  width: 0.625rem;
  height: 0.625rem;
  display: inline-block;
  place-content: center;
}
@media (min-width: 787px) {
  .toc_toggle {
    width: 1.25rem;
    height: 1.25rem;
  }
}

/* 「非表示／表示」トグル */
#toc_container .toc_toggle a {
  display: block;
  width: 0.9375rem;
  height: 0.625rem;
  text-indent: -9999px;
  /* テキストを画面外に飛ばす */
  overflow: hidden;
  background: url(../img/webp/toc-toggle.webp) no-repeat center center/contain;
}

#toc_container .toc_toggle span {
  display: none;
}

/* トグルのブラケット */
/* ULリスト基本設定 */
/* 各レベルのリスト間の余白 */
#toc_container ul ul {
  margin-top: 0.3em;
  margin-left: 1.5em;
}

#toc_container ul li a {
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.8;
  letter-spacing: 0.02em;
}

#toc_container ul ul li a {
  font-weight: 400;
  font-size: 0.9375rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
}

/* リストアイテム */
#toc_container li {
  margin: 0.2em 0;
  line-height: 1.8;
}

.toc_list {
  padding: 1.5rem;
  color: #252D3E;
}
@media (min-width: 787px) {
  .toc_list {
    padding: 1.5rem 2.5rem;
  }
}

/* ------------------------------
   番号に . を付ける（例：1 → 1.）
-------------------------------- */
.toc_number::after {
  content: ".";
  margin-right: 0.25em; /* 数字とテキストの間隔 */
}

/* リンク */
#toc_container a {
  text-decoration: none;
  color: #222;
  font-weight: 500;
  font-size: 1rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}

/* 番号部分（span.toc_number） */
#toc_container .toc_number {
  display: inline-block;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  text-align: right;
  color: #222;
  font-weight: 700;
  margin-right: 0.5em;
}

/* 深さによるサイズ調整 */
#toc_container .toc_depth_1 {
  font-weight: 700;
}

#toc_container .toc_depth_2 {
  font-weight: 500;
  font-size: 0.95rem;
  color: #333;
}

#toc_container .toc_depth_3 {
  font-weight: 400;
  font-size: 0.9rem;
  color: #444;
}

.voice {
  background: url(../img/webp/voice-bg-sp.webp) no-repeat center center/cover;
  padding-block: 8.375rem 5rem;
}
@media (min-width: 787px) {
  .voice {
    background: url(../img/webp/voice-bg-pc.webp) no-repeat center center/cover;
  }
}

.voice__inner {
  width: 70rem;
  max-width: 100%;
  margin-inline: auto;
  padding-inline: 1rem;
}
@media (min-width: 787px) {
  .voice__inner {
    padding-inline: initial;
  }
}

.voice__content {
  margin-top: 4.75rem;
  padding: 3rem 1.5rem;
  background: #FFF;
  border-radius: 0.25rem;
}
@media (min-width: 787px) {
  .voice__content {
    padding: 3.5rem;
    margin-top: 5.25rem;
  }
}

.voice__items {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.5rem;
}
@media (min-width: 787px) {
  .voice__items {
    gap: 3rem;
  }
}

.voice__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5625rem;
}

.voice__item-title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: 0.05em;
  background: -webkit-gradient(linear, left top, right top, from(#3990FF), to(#196FDD));
  background: linear-gradient(to right, #3990FF, #196FDD);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-left: 1rem;
  border-left: 0.25rem solid #196FDD;
}
@media (min-width: 787px) {
  .voice__item-title {
    font-size: 1.5rem;
  }
}

.voice__item-text {
  background: #EEEEEE;
  padding: 1rem;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.6;
  color: #000;
  letter-spacing: 0.02em;
}
@media (min-width: 787px) {
  .voice__item-text {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.8;
    padding: 1.5rem;
  }
}

.work {
  padding-block: 5rem;
  background: #FFF;
}
.work .case-list {
  gap: 1.875rem;
}
.work .case-list__item {
  -webkit-box-shadow: 0px 4px 20px 0px rgba(117, 125, 133, 0.3);
          box-shadow: 0px 4px 20px 0px rgba(117, 125, 133, 0.3);
}
.work select {
  padding-block: 1rem;
  padding-left: 1.5rem;
  background: #F3F3F3;
  border: initial;
}
@media (min-width: 787px) {
  .work select {
    padding-block: 1.125rem;
  }
}
.work .page-nav {
  margin-top: 3.5rem;
}
@media (min-width: 787px) {
  .work .page-nav {
    margin-top: 5rem;
  }
}

.work__inner {
  width: 70rem;
  max-width: 100%;
  margin-inline: auto;
}

.work__content {
  margin-top: 3.5rem;
}
@media (min-width: 787px) {
  .work__content {
    margin-top: 5rem;
  }
}

.filter__title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.05em;
}

.filter__label {
  font-size: 0.9375rem;
  font-weight: 700;
}

.filter__inner {
  display: block;
  padding-inline: 1.5rem;
}
@media (min-width: 787px) {
  .filter__inner {
    padding-inline: initial;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.filter__form {
  margin-top: 2.5rem;
}
@media (min-width: 787px) {
  .filter__form {
    margin-top: initial;
    margin-left: auto;
  }
}

.filter__group {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
@media (min-width: 787px) {
  .filter__group {
    -webkit-box-pack: initial;
    -webkit-justify-content: initial;
        -ms-flex-pack: initial;
            justify-content: initial;
    gap: 1rem;
  }
}
.filter__group::after {
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  right: 1.5rem;
  width: 0.8125rem;
  height: 0.5rem;
  background: url(../img/svg/select-arrow.svg) no-repeat center center/contain;
}

.filter__select {
  width: 14.75rem;
  font-size: 0.9375rem;
  font-weight: 700;
}
@media (min-width: 787px) {
  .filter__select {
    width: 15rem;
  }
}

.work__content-none {
  text-align: center;
  font-size: 1rem;
}

/* ===============================================    
single-works
=============================================== */
.others-works {
  padding-block: 5rem;
}
.others-works .case-list__item-img {
  width: 100%;
  height: 10.5625rem;
  max-width: 100%;
  margin-inline: auto;
}
@media (min-width: 787px) {
  .others-works .case-list__item-img {
    width: 18.75rem;
  }
}
.others-works .case-list {
  margin-top: 3rem;
  gap: 2rem;
  width: 100%;
}
@media (min-width: 787px) {
  .others-works .case-list {
    margin-top: 5.5rem;
    gap: 1.875rem;
  }
}
.others-works .case-list__item {
  -webkit-box-shadow: 0px 4px 20px 0px rgba(117, 125, 133, 0.3);
          box-shadow: 0px 4px 20px 0px rgba(117, 125, 133, 0.3);
}

.others-works__title-wrap {
  position: relative;
  padding-bottom: 2rem;
}
.others-works__title-wrap::after {
  content: "";
  position: absolute;
  left: 50%;
  translate: -50%;
  bottom: 0;
  background: -webkit-gradient(linear, left top, right top, from(#004098), to(#3990FF));
  background: linear-gradient(to right, #004098, #3990FF);
  width: 100%;
  height: 1px;
}

.others-works__title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.05em;
  background: linear-gradient(135deg, #004098 0%, #3990FF 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
@media (min-width: 787px) {
  .others-works__title {
    margin-inline: initial;
  }
}

.others-works__inner {
  width: 100%;
  max-width: 100%;
  margin-inline: auto;
  padding-inline: 1.5rem;
}
@media (min-width: 787px) {
  .others-works__inner {
    width: 70rem;
    padding-inline: initial;
  }
}

.others-works__btn {
  margin-top: 3rem;
}
.others-works__btn .section-btn {
  -webkit-box-shadow: none;
          box-shadow: none;
  background: #F5F5F5;
  width: 15.9375rem;
  height: 3.375rem;
  max-width: 100%;
  margin-left: auto;
}

.works-photos {
  padding-block: 5.9375rem 5rem;
}
@media (min-width: 787px) {
  .works-photos {
    padding-block: 8.4375rem 5rem;
  }
}

.works-photos__inner {
  width: 75rem;
  max-width: 100%;
  margin-inline: auto;
}

.works-photos__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  margin-top: 4.75rem;
  padding-inline: 1rem;
}
@media (min-width: 787px) {
  .works-photos__items {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 5.25rem;
    padding-inline: initial;
  }
}

.works-photos__item {
  width: 100%;
  height: 7.25rem;
  max-width: 100%;
}
@media (min-width: 787px) {
  .works-photos__item {
    width: 24rem;
    height: 16.0625rem;
  }
}
.works-photos__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.25rem;
}

.works-omparison {
  padding-block: 8.375rem 2.5rem;
  background: rgba(255, 255, 255, 0.9);
  z-index: 1;
}
@media (min-width: 787px) {
  .works-omparison {
    position: relative;
  }
  .works-omparison::after {
    content: "";
    position: absolute;
    bottom: -35%;
    right: 0;
    width: 18.75rem;
    height: 35.0625rem;
    z-index: -1;
    background: rgba(255, 255, 255, 0.5) url(../img/webp/accent-bg.webp) no-repeat center center/cover;
    background-blend-mode: overlay;
  }
}
@media screen and (min-width: 1441px) {
  .works-omparison {
    position: relative;
  }
  .works-omparison::after {
    right: calc((100vw - 1440px) / 2);
  }
}

.works-omparison__inner {
  width: 75rem;
  max-width: 100%;
  margin-inline: auto;
}

.works-omparison__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[1];
  grid-template-columns: repeat(1, 1fr);
  gap: 3rem;
  margin-top: 4.75rem;
  position: relative;
}
@media (min-width: 787px) {
  .works-omparison__items {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    gap: 5rem;
    margin-top: 5.25rem;
  }
}
.works-omparison__items::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 2rem;
  height: 2rem;
  background: url(../img/svg/double-arrow.svg) no-repeat center center/cover;
  rotate: 90deg;
}
@media (min-width: 787px) {
  .works-omparison__items::after {
    rotate: 0deg;
  }
}

.works-omparison__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
  position: relative;
  width: 22.375rem;
  max-width: 100%;
  margin-inline: auto;
}
@media (min-width: 787px) {
  .works-omparison__item {
    width: initial;
    margin-inline: initial;
  }
}
.works-omparison__item:nth-child(2) .works-omparison__item-title {
  color: #196FDD;
}

.works-omparison__item-title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: 0.05em;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  background: #F7F9FC;
  padding: 0.5rem 1rem;
  border-radius: 0 0 0.75rem 0;
}
@media (min-width: 787px) {
  .works-omparison__item-title {
    font-size: 1.5rem;
    position: initial;
    background: initial;
    padding: initial;
  }
}

.works-omparison__item-img {
  width: 22.375rem;
  height: 12.5rem;
  max-width: 100%;
  margin-inline: auto;
}
@media (min-width: 787px) {
  .works-omparison__item-img {
    width: 34.375rem;
    height: 19.6875rem;
  }
}
.works-omparison__item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.125rem;
}

.page-fv.page-works .section__title-en {
  display: none;
}

.works-info {
  padding-block: 2.5rem;
  padding-inline: 1rem;
  background: #FAFBFC;
}
@media (min-width: 787px) {
  .works-info {
    padding-inline: initial;
    padding-block: 5rem;
  }
}

.works-info__inner {
  width: 75rem;
  max-width: 100%;
  margin-inline: auto;
}

.works-info__head {
  width: 37.375rem;
  max-width: 100%;
  border-radius: 1.5rem 1.5rem 0 0;
  background: -webkit-gradient(linear, left top, right top, from(#3990FF), to(#196FDD));
  background: linear-gradient(to right, #3990FF, #196FDD);
  padding: 1rem;
  color: #FFF;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (min-width: 787px) {
  .works-info__head {
    padding: 1rem 2.5rem;
  }
}
.works-info__head .text {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
@media (min-width: 787px) {
  .works-info__head .text {
    font-size: 1.125rem;
  }
}
.works-info__head .unit {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
}
@media (min-width: 787px) {
  .works-info__head .unit {
    font-size: 1.25rem;
    line-height: 1.6;
  }
}

.works-info__head-basic {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.05em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.25rem;
}
.works-info__head-basic .tag {
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.05em;
  border: 1px solid #FFF;
  border-radius: 3.125rem;
  padding: 0.25rem 1rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.works-info__head-amount {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media (min-width: 787px) {
  .works-info__head-amount {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
.works-info__head-amount strong {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #FFF;
}
@media (min-width: 787px) {
  .works-info__head-amount strong {
    font-size: 2.5rem;
  }
}
.works-info__head-amount .text {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.05em;
  text-align: right;
}
@media (min-width: 787px) {
  .works-info__head-amount .text {
    font-size: 1.125rem;
    text-align: initial;
  }
}
.works-info__head-amount .praice-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
@media (min-width: 787px) {
  .works-info__head-amount .praice-wrap {
    display: contents;
  }
}

.works-info__content-body-top-items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  width: 27rem;
  max-width: 100%;
}
@media (min-width: 787px) {
  .works-info__content-body-top-items {
    gap: 1rem;
    width: 33.5rem;
  }
}

.works-info__content-body-top-item {
  min-height: 8.25rem;
  background: #F4F6F8;
  border-radius: 0.125rem;
  padding: 1rem 0.5rem;
  color: #196FDD;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 787px) {
  .works-info__content-body-top-item {
    padding: 1rem 1.5rem;
  }
}
.works-info__content-body-top-item img {
  width: 3rem;
  max-width: 100%;
  height: 3rem;
  -o-object-fit: cover;
     object-fit: cover;
  margin-inline: auto;
}

.works-info__content-wrap {
  border: 0.125rem solid #DFE9F3;
  border-radius: 0 0.25rem 0.25rem 0.25rem;
}

.works-info__content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
  padding: 1.5rem 0.5rem 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 787px) {
  .works-info__content {
    padding: 3rem 2.5rem 2.5rem;
    gap: 2.5rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.works-info__content-body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
}
@media (min-width: 787px) {
  .works-info__content-body {
    gap: 1rem;
  }
}

.works-info__content-body-top-item-title {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.works-info__content-body-top-item-text {
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.6;
}
@media (min-width: 787px) {
  .works-info__content-body-top-item-text {
    font-size: 0.9375rem;
    line-height: 1.4;
  }
}
.works-info__content-body-top-item-text span {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
}
@media (min-width: 787px) {
  .works-info__content-body-top-item-text span {
    font-size: 1.5rem;
  }
}

.works-info__content-img {
  width: 21.375rem;
  height: 12rem;
  max-width: 100%;
  border-radius: 0.075rem;
}
@media (min-width: 787px) {
  .works-info__content-img {
    width: 34rem;
    height: 19.125rem;
    border-radius: 0.125rem;
  }
}
.works-info__content-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.works-info__content-body-bottom-items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(6.25rem, 1fr) minmax(6.25rem, 2fr) minmax(7.8125rem, 1fr);
  grid-template-columns: minmax(6.25rem, 1fr) minmax(6.25rem, 2fr) minmax(7.8125rem, 1fr);
  width: 100%;
  max-width: 100%;
}
@media (min-width: 787px) {
  .works-info__content-body-bottom-items {
    -ms-grid-columns: minmax(9.875rem, 1fr) minmax(11.25rem, 2fr) minmax(12.375rem, 1fr);
    grid-template-columns: minmax(9.875rem, 1fr) minmax(11.25rem, 2fr) minmax(12.375rem, 1fr);
    width: 33.5rem;
  }
}

.works-info__content-body-bottom-item {
  height: 10.5rem;
  background: #F1F5FA;
  padding: 1.5rem 0rem 1.5rem 0.625rem;
  color: #002E6E;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0.5rem;
  position: relative;
}
@media (min-width: 787px) {
  .works-info__content-body-bottom-item {
    height: 9.625rem;
    padding: 1.5rem 1.125rem 1.5rem 2rem;
  }
}
.works-info__content-body-bottom-item:nth-child(1) {
  border-radius: 0.125rem 0 0 0.125rem;
}
.works-info__content-body-bottom-item:nth-child(1)::after {
  content: "";
  position: absolute;
  left: 100%;
  top: 0;
  width: 40%;
  height: 10.5rem;
  background: #F1F5FA;
  -webkit-clip-path: polygon(0 0, 0% 0, 55% 50%, 0 100%, 0 100%);
          clip-path: polygon(0 0, 0% 0, 55% 50%, 0 100%, 0 100%);
  z-index: 1;
}
@media (min-width: 787px) {
  .works-info__content-body-bottom-item:nth-child(1)::after {
    height: 9.625rem;
  }
}
.works-info__content-body-bottom-item:nth-child(2) {
  background: #E9F0F7;
}
.works-info__content-body-bottom-item:nth-child(2)::after {
  content: "";
  position: absolute;
  left: 100%;
  top: 0;
  width: 40%;
  height: 10.5rem;
  background: #E9F0F7;
  -webkit-clip-path: polygon(0 0, 0% 0, 55% 50%, 0 100%, 0 100%);
          clip-path: polygon(0 0, 0% 0, 55% 50%, 0 100%, 0 100%);
  z-index: 1;
}
@media (min-width: 787px) {
  .works-info__content-body-bottom-item:nth-child(2)::after {
    height: 9.625rem;
  }
}
.works-info__content-body-bottom-item:nth-child(3) {
  background: #DFE9F3;
  border-radius: 0 0.125rem 0.125rem 0;
}
.works-info__content-body-bottom-item:nth-child(3) .works-info__content-body-bottom-item-text {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background: -webkit-gradient(linear, left top, right top, from(#3990FF), to(#196FDD));
  background: linear-gradient(to right, #3990FF, #196FDD);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  white-space: nowrap;
}
.works-info__content-body-bottom-item:nth-child(3) .works-info__content-body-bottom-item-text span {
  background: -webkit-gradient(linear, left top, right top, from(#3990FF), to(#196FDD));
  background: linear-gradient(to right, #3990FF, #196FDD);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  font-size: 1.25rem;
}
@media (min-width: 787px) {
  .works-info__content-body-bottom-item:nth-child(3) .works-info__content-body-bottom-item-text span {
    font-size: 1.5625rem;
  }
}
.works-info__content-body-bottom-item img {
  width: 3rem;
  height: 3rem;
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  margin-inline: auto;
}

.works-info__content-body-bottom-item-title {
  font-size: 0.875rem;
  font-weight: 700;
  text-align: center;
}
@media (min-width: 787px) {
  .works-info__content-body-bottom-item-title {
    font-size: 0.9375rem;
    text-align: initial;
  }
}

.works-info__content-body-bottom-item-text {
  font-size: 0.625rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: -0.08em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 0.125rem;
}
@media (min-width: 787px) {
  .works-info__content-body-bottom-item-text {
    font-size: 0.875rem;
    letter-spacing: -0.02em;
  }
}
.works-info__content-body-bottom-item-text span {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.2;
}
@media (min-width: 787px) {
  .works-info__content-body-bottom-item-text span {
    font-size: 1.25rem;
    letter-spacing: 0.05em;
  }
}

.works-info__content-category {
  background: #DFE9F3;
  padding: 2.5rem 0.5rem;
  border-radius: 0 0 0.25rem 0.25rem;
  width: 21.375rem;
  max-width: 100%;
  margin-inline: auto;
  margin-top: 2.5rem;
}
@media (min-width: 787px) {
  .works-info__content-category {
    width: initial;
    margin-inline: initial;
    margin-top: initial;
    padding: 2.5rem;
  }
}

.works-info__content-category-items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[1];
  grid-template-columns: repeat(1, 1fr);
  gap: 2.5rem;
}
@media (min-width: 787px) {
  .works-info__content-category-items {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}

.works-info__content-category-title-wrap {
  position: relative;
}
.works-info__content-category-title-wrap::after {
  content: "";
  position: absolute;
  left: 50%;
  translate: -50%;
  bottom: -1.5rem;
  width: 100%;
  height: 1px;
  background: -webkit-gradient(linear, left top, right top, from(#004098), to(#3990FF));
  background: linear-gradient(to right, #004098, #3990FF);
}

.works-info__content-category-item-title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.05em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background: linear-gradient(135deg, #004098 0%, #3990FF 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  margin-inline: auto;
}

.works-info__content-category-detail {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  margin-top: 3rem;
}
@media (min-width: 787px) {
  .works-info__content-category-detail {
    gap: 1.5rem;
    padding-inline: 0.9375rem;
  }
}

.works-info__content-category-detail-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
  text-align: center;
}

.works-info__content-category-detail-item-title {
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.02em;
}

.works-info__content-category-detail-item-text {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  padding: 1rem 0.3125rem;
  background: #FFF;
  color: #196FDD;
}
@media (min-width: 787px) {
  .works-info__content-category-detail-item-text {
    font-size: 1.0625rem;
    padding: 1rem 1.125rem;
  }
}
.works-info__content-category-detail-item-text span {
  font-size: 0.75rem;
  line-height: 1.4;
}
@media (min-width: 787px) {
  .works-info__content-category-detail-item-text span {
    font-size: 0.875rem;
  }
}
/*# sourceMappingURL=style.css.map */
