@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", "Hiragino Sans", sans-serif;
  background-color: #f1f1f1;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.l-page {
  max-width: 960px;
  margin-inline: auto;
  background-color: #ffffff;
}

.header {
  background-color: #ffffff;
}

.header__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px 16px;
  max-width: 960px;
  margin-inline: auto;
  padding: 10px 16px;
}
@media (max-width: 768px) {
  .header__inner {
    justify-content: center;
    text-align: center;
  }
}

.header__logo {
  margin: 0;
  line-height: 1.5;
}

.header__logo img {
  width: 100%;
  max-width: 400px;
}
@media (max-width: 768px) {
  .header__logo img {
    max-width: 380px;
    margin-inline: auto;
  }
}

.header__info {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .header__info {
    justify-content: center;
    width: 100%;
    font-size: 12px;
  }
}

.header__btn {
  display: inline-block;
  padding: 4px 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  background: linear-gradient(to bottom, #f5f5f5, #f0f0f0);
  color: #003399;
  text-decoration: none;
}
.header__btn:hover {
  opacity: 0.85;
}
@media (max-width: 768px) {
  .header__btn {
    padding: 2px 10px 2px 15px;
    background: linear-gradient(#ffffff, #eeeeee);
  }
}

.header__sep {
  color: #cdcdcd;
}
@media (max-width: 768px) {
  .header__sep {
    color: #003399;
  }
}

.header__home {
  color: #003399;
  text-decoration: none;
}
.header__home:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .header__home {
    color: #003399;
  }
}

.global-nav {
  background-color: #ffffff;
  padding: 0 12px;
}

.global-nav__toggle {
  display: none;
}
@media (max-width: 768px) {
  .global-nav__toggle {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e0e0e0;
    background: linear-gradient(#f7f7f7, #ebebeb);
    color: #003399;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
  }
  .global-nav__toggle::before {
    content: "→";
    margin-right: 8px;
    color: #003399;
  }
}

@media (max-width: 768px) {
  .global-nav--open .global-nav__toggle::before {
    content: "↓";
  }
}

.global-nav__list {
  display: flex;
  max-width: 960px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  border-top: 1px solid #d2d2d2;
  border-bottom: 1px solid #d2d2d2;
}

.global-nav__item {
  flex: 1 1 0;
  border-left: 1px solid #d2d2d2;
}
.global-nav__item:first-child {
  flex: 0 0 auto;
}
.global-nav__item:last-child {
  border-right: 1px solid #d2d2d2;
}

.global-nav__link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 57px;
  padding: 6px 6px;
  background: linear-gradient(to bottom, rgb(236, 236, 236) 40%, rgb(223, 223, 223) 50%, rgb(227, 227, 227) 55%, rgb(240, 240, 240) 100%);
  color: #252525;
  font-family: "Meiryo", "メイリオ", system-ui, sans-serif;
  font-size: 13px;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
}
.global-nav__link:hover {
  background: linear-gradient(to bottom, rgb(22, 104, 182) 15%, rgb(32, 123, 200) 53%, rgb(23, 116, 198) 55%, rgb(35, 144, 225) 100%);
  color: #ffffff;
}

@media (max-width: 768px) {
  .global-nav__panel {
    display: none;
    opacity: 0;
    transition: opacity 0.2s ease, display 0.2s ease allow-discrete;
  }
  .global-nav--open .global-nav__panel {
    display: block;
    opacity: 1;
  }
  @starting-style {
    .global-nav--open .global-nav__panel {
      opacity: 0;
    }
  }
  .global-nav__list {
    flex-direction: column;
  }
  .global-nav__item {
    flex: 1 1 auto;
    border-left: none;
    border-top: none;
    border-bottom: 1px dashed #cccccc;
  }
  .global-nav__item:first-child {
    flex: 1 1 auto;
  }
  .global-nav__item:last-child {
    border-right: none;
    border-bottom: none;
  }
  .global-nav__link {
    min-height: auto;
    justify-content: flex-start;
    padding: 15px 10px;
    background: linear-gradient(#f7f7f7, #ebebeb);
    color: #003399;
  }
  .global-nav__link br {
    display: none;
  }
  .global-nav__item:first-child .global-nav__link {
    color: #d72024;
  }
}
.fv {
  width: 100%;
  max-width: 960px;
  margin-inline: auto;
  padding-inline: 24px;
  padding: 18px 12px 0;
}

.fv__banner {
  position: relative;
  width: 100%;
  min-height: 454px;
  margin-inline: auto;
  overflow: hidden;
  border: 4px solid #d9d9d9;
  background: linear-gradient(180deg, #006ace 0%, #00438f 32%, #133263 64%);
  container-type: inline-size;
}
@media (max-width: 768px) {
  .fv__banner {
    min-height: 617px;
    display: flex;
    flex-direction: column;
  }
}

.fv__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.fv__bg-city {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.5;
  mix-blend-mode: overlay;
}

.fv__bg-worker {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-mask-image: linear-gradient(90deg, transparent 45%, #000 70%);
          mask-image: linear-gradient(90deg, transparent 45%, #000 70%);
}

.fv__bg-team {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 40%;
  max-width: 366px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 480px) {
  .fv__bg-team {
    width: 46%;
  }
}

.fv__bg-sp {
  display: none;
}
@media (max-width: 768px) {
  .fv__bg-sp {
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

@media (max-width: 768px) {
  .fv__bg-city,
  .fv__bg-worker,
  .fv__bg-team {
    display: none;
  }
}
.fv__body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 680px;
  padding: 28px 18px 36px;
}
@media (max-width: 768px) {
  .fv__body {
    flex: 1;
    justify-content: space-between;
    max-width: none;
    gap: 0;
    padding: 28px 8px 40px;
  }
}

.fv__head {
  display: flex;
  align-items: flex-start;
  gap: clamp(10px, 1.5cqw, 14px);
}
@media (max-width: 768px) {
  .fv__head {
    flex-wrap: wrap;
    -moz-column-gap: 10px;
         column-gap: 10px;
    row-gap: 0.75rem;
  }
}

.fv__logo {
  flex: none;
  width: clamp(48px, 8.78cqw, 81px);
  height: auto;
}
@media (max-width: 768px) {
  .fv__logo {
    width: 66px;
    height: 66px;
  }
}

.fv__headline {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
@media (max-width: 768px) {
  .fv__headline {
    display: contents;
  }
}

.fv__title {
  margin: 0;
  color: #ffffff;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 5.1cqw, 47px);
  line-height: 1.5;
  letter-spacing: 0.034em;
}
@media (max-width: 768px) {
  .fv__title {
    flex: 1;
    min-width: 0;
    font-size: 1.9rem;
    line-height: 1.5;
  }
}

.fv__title-sub {
  font-size: clamp(1.375rem, 4.66cqw, 43px);
}
@media (max-width: 768px) {
  .fv__title-sub {
    display: block;
    font-size: 1.875rem;
  }
}

.fv__title-br--sp {
  display: none;
}

.fv__title-br--pc {
  display: inline;
}

@media (max-width: 768px) {
  .fv__title-br--sp {
    display: inline;
  }
  .fv__title-br--pc {
    display: none;
  }
}
.fv__lead {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  color: #fdd379;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  font-size: 1.125rem;
  line-height: 1.5;
}
.fv__lead::before, .fv__lead::after {
  content: "";
  flex: none;
  width: 7px;
  height: 1px;
  background: currentColor;
}
@media (max-width: 768px) {
  .fv__lead {
    flex-basis: 100%;
    justify-content: center;
    margin: 0;
    font-size: 1rem;
  }
}

.fv__points {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(12px, 2.5cqw, 23px);
  margin: 0.25rem 0 0;
  padding: 0;
  list-style: none;
}
@media (max-width: 768px) {
  .fv__points {
    flex-basis: 100%;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 17px;
    margin: 0;
  }
}

.fv__point {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: clamp(76px, 12.36cqw, 114px);
  aspect-ratio: 1;
  padding: 8px;
  background: url("../images/fv-point-circle.svg") center/contain no-repeat;
  text-align: center;
}
@media (max-width: 768px) {
  .fv__point {
    width: 93px;
    height: 93px;
  }
}

.fv__point-icon {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: clamp(26px, 3.9cqw, 36px);
}
.fv__point-icon img {
  max-width: 100%;
  max-height: 100%;
}

.fv__point-label {
  color: #021531;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.5;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
}

.fv__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
@media (max-width: 768px) {
  .fv__cta {
    flex-direction: column;
    align-items: center;
  }
}

.fv__cta-button {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 8px;
  flex: 1 1 240px;
  max-width: 265px;
  min-height: 65px;
  padding: 0 16px;
  border-radius: 10px;
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 0 14px rgba(2, 21, 49, 0.6);
  transition: opacity 0.2s ease;
}
.fv__cta-button:hover {
  opacity: 0.9;
}
.fv__cta-button:focus-visible {
  outline: 3px solid #fdd379;
  outline-offset: 2px;
}
@media (max-width: 768px) {
  .fv__cta-button {
    flex: none;
    width: 265px;
    max-width: 100%;
    min-height: 65px;
  }
}

.fv__cta-button--primary {
  border: 2px solid #ffffff;
  background: linear-gradient(180deg, #fda324, #c74c00);
}

.fv__cta-button--secondary {
  border: 1px solid #ffffff;
  background: #021531;
}

.fv__cta-icon {
  flex: none;
  width: auto;
  height: 20px;
}

.fv__cta-arrow {
  flex: none;
  width: auto;
  height: 14px;
}

.fv__cta-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.fv__cta-title {
  font-family: "Meiryo", "メイリオ", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.fv__cta-button--secondary .fv__cta-title {
  font-size: 1.125rem;
}

.fv__cta-note {
  font-family: "Meiryo", "メイリオ", sans-serif;
  font-size: 0.6875rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

.lp-menu {
  width: 100%;
  max-width: 960px;
  margin-inline: auto;
  padding-inline: 24px;
  padding-left: 12px;
  padding-right: 12px;
}
@media (max-width: 768px) {
  .lp-menu {
    padding-top: 20px;
    padding-inline: 20px;
    padding-bottom: 4px;
  }
}

.lp-menu__list {
  display: flex;
  align-items: stretch;
  min-height: 89px;
  margin: 0;
  padding: 0;
  list-style: none;
  background-color: #ffffff;
  border-bottom: 5px solid #f4f4f4;
}
@media (max-width: 768px) {
  .lp-menu__list {
    flex-direction: column;
    gap: 7px;
    min-height: 0;
    background-color: transparent;
    border-bottom: none;
    padding: 0;
  }
}

.lp-menu__item {
  flex: 1 1 0;
  display: flex;
}
.lp-menu__item:not(:first-child)::before {
  content: "";
  flex: 0 0 1px;
  align-self: center;
  height: 51px;
  background-color: #c4c4c4;
}
@media (max-width: 768px) {
  .lp-menu__item {
    flex: none;
    width: 100%;
    background-color: #ffffff;
    border-radius: 5px;
    box-shadow: 0 0 4px 0 rgba(56, 115, 188, 0.41);
    overflow: hidden;
    min-height: 42px;
  }
  .lp-menu__item:not(:first-child)::before {
    content: none;
  }
}

.lp-menu__link {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 51px;
  padding: 8px 8px 12px;
  color: #333333;
  font-family: "Meiryo", "メイリオ", sans-serif;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.lp-menu__link:hover {
  opacity: 0.6;
}
.lp-menu__link:focus-visible {
  opacity: 0.6;
  outline: 2px solid #333333;
  outline-offset: 2px;
}
@media (max-width: 768px) {
  .lp-menu__link {
    flex-direction: row;
    align-items: stretch;
    min-height: 42px;
    padding: 0;
  }
}

.lp-menu__body {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .lp-menu__body {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 4px 12px;
    gap: 0;
  }
  .lp-menu__body br {
    display: none;
  }
}

.lp-menu__text {
  font-size: 0.8125rem;
}
@media (max-width: 768px) {
  .lp-menu__text {
    font-size: 0.875rem;
  }
}

.lp-menu__text-sub {
  display: block;
  font-size: 0.625rem;
}
@media (max-width: 768px) {
  .lp-menu__text-sub {
    font-size: 0.875rem;
    color: #333333;
    line-height: 1.5;
  }
}

.lp-menu__arrow-box {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .lp-menu__arrow-box {
    flex: 0 0 25px;
    width: 25px;
    align-self: stretch;
    background: #476eb8;
    border-radius: 0 5px 5px 0;
  }
}

.lp-menu__arrow {
  flex: none;
  display: block;
  width: 19px;
  height: 12px;
}
@media (max-width: 768px) {
  .lp-menu__arrow {
    width: 12px;
    height: auto;
    transform: rotate(-90deg);
    filter: brightness(0) invert(1);
  }
}

.gj-nintei {
  position: relative;
  width: 100%;
  padding-block: 40px 42px;
  padding-top: 12px;
  background-color: #ffffff;
  color: #333333;
  font-family: "Meiryo", "メイリオ", sans-serif;
}
.gj-nintei__design {
  width: 100%;
  max-width: 960px;
  margin-inline: auto;
  padding-inline: 0;
  background: url("../images/gj-nintei-bg.png") right top/contain no-repeat;
}
.gj-nintei__design .section-heading {
  margin-bottom: 0;
}
.gj-nintei__design .pagetop {
  bottom: 0;
  right: 28px;
}
.gj-nintei__body {
  width: 100%;
  max-width: calc(890px + 24px * 2);
  margin-inline: auto;
  padding-inline: 24px;
  margin-top: 0;
}
.gj-nintei__catch {
  font-size: 1.625rem;
  font-weight: bold;
  line-height: 1.5;
  text-align: left;
}
.gj-nintei__catch-accent {
  color: #06408d;
}
.gj-nintei__lead {
  max-width: 643px;
  margin-top: 36px;
  font-size: 0.875rem;
  line-height: 1.5;
}
.gj-nintei__lead p {
  margin: 0;
}
.gj-nintei__lead-strong {
  color: #0077cc;
  font-weight: bold;
}
.gj-nintei__lead-point {
  color: #0077cc;
  font-weight: bold;
}
.gj-nintei__table-frame {
  margin-top: 30px;
  padding: 2px;
  background-color: #0f4487;
  border-radius: 10px;
}
.gj-nintei__table {
  width: 100%;
  background-color: #ffffff;
  border-collapse: collapse;
  border-radius: 8px;
  overflow: hidden;
  table-layout: fixed;
}
.gj-nintei__table-group, .gj-nintei__table-label, .gj-nintei__table-cell {
  padding: 16px 12px;
  border: 1px solid #91b6e2;
  font-size: 0.75rem;
  line-height: 1.5;
  vertical-align: middle;
}
.gj-nintei__table-group {
  width: 130px;
  background: linear-gradient(180deg, #3d91ff, #3a73bf);
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: bold;
  text-align: center;
  white-space: nowrap;
}
.gj-nintei__table-label {
  width: 149px;
  background-color: #edfcff;
  color: #0f4487;
  font-weight: bold;
  text-align: center;
  white-space: nowrap;
}
.gj-nintei__table-cell {
  text-align: left;
}
.gj-nintei__table-cell--purpose {
  padding: 16px;
}
.gj-nintei__purpose-list {
  margin: 0;
  padding-left: 0;
  list-style: none;
}
.gj-nintei__purpose-list li {
  display: block;
  padding-left: 15px;
  text-indent: -15px;
  line-height: 1.5;
}
.gj-nintei__purpose-list li::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #06408d;
  margin-right: 8px;
  vertical-align: middle;
}
.gj-nintei__foot {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 16px;
  margin-top: 8px;
}
.gj-nintei__note {
  font-size: 0.625rem;
  line-height: 1.5;
}
.gj-nintei__note-link {
  color: #06408d;
  text-decoration: underline;
}
.gj-nintei__heading-br {
  display: none;
}
@media (max-width: 768px) {
  .gj-nintei__heading-br {
    display: inline;
  }
}
@media (max-width: 768px) {
  .gj-nintei {
    padding-block: 12px 56px;
  }
  .gj-nintei__design {
    background-size: 126% auto;
    background-position: right 40%;
  }
  .gj-nintei__design .pagetop {
    right: 0;
  }
  .gj-nintei__catch {
    font-size: 1.125rem;
  }
  .gj-nintei__lead {
    max-width: none;
    line-height: 1.5;
  }
  .gj-nintei__table {
    display: flex;
    flex-direction: column;
    gap: 1px;
    background-color: #91b6e2;
  }
  .gj-nintei tbody {
    display: contents;
  }
  .gj-nintei tr {
    display: flex;
    flex-wrap: wrap;
    gap: 1px;
  }
  .gj-nintei__table-group, .gj-nintei__table-label, .gj-nintei__table-cell {
    border: none;
    width: auto;
  }
  .gj-nintei__table-group {
    flex: 0 0 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 11px 12px;
  }
  .gj-nintei__table-label {
    flex: 0 0 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 6px;
  }
  .gj-nintei__table-cell {
    flex: 1 1 0;
    min-width: 0;
    padding: 10px 12px;
    background-color: #ffffff;
    font-size: 0.6875rem;
  }
  .gj-nintei__table-cell--purpose {
    flex: 0 0 100%;
    padding: 12px 14px;
  }
  .gj-nintei__purpose-list li {
    font-size: 0.6875rem;
  }
  .gj-nintei__foot {
    flex-direction: column;
    gap: 20px;
    padding-bottom: 12px;
  }
}

.gj-merit {
  position: relative;
  width: 100%;
  padding-bottom: 12px;
  background-color: #ffffff;
  color: #333333;
  font-family: "Meiryo", "メイリオ", sans-serif;
}
.gj-merit .pagetop--sp {
  bottom: 6px;
  left: auto;
  right: 24px;
  margin-inline: 0;
  width: -moz-fit-content;
  width: fit-content;
}
.gj-merit__heading {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 71px;
  padding: 12px 24px;
  background: linear-gradient(to left, #003399, #0b74ff);
  color: #ffffff;
  font-family: "Meiryo", "メイリオ", sans-serif;
  font-size: 26px;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-align: center;
}
@media (max-width: 768px) {
  .gj-merit__heading {
    min-height: 56px;
    padding: 10px 20px;
    font-size: 20px;
  }
}
.gj-merit__heading {
  flex-direction: column;
  gap: 4px;
  min-height: 82px;
}
.gj-merit__heading-sub {
  font-size: 20px;
  letter-spacing: 0.05em;
}
.gj-merit__design {
  width: 100%;
  max-width: 960px;
  margin-inline: auto;
  padding-inline: 0;
  background: #e7f0f7 url("../images/merit-bg-pc.png") top center/960px auto no-repeat;
  padding-bottom: 18px;
}
.gj-merit__body {
  width: 100%;
  max-width: 960px;
  margin-inline: auto;
  padding-inline: 24px;
  padding-top: 32px;
}
.gj-merit__lead {
  margin: 0;
  font-size: 1.0625rem;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
}
.gj-merit__lead-br--sp {
  display: none;
}
.gj-merit__diagram {
  position: relative;
  width: calc(100% + 48px);
  max-width: 933px;
  margin: 28px -24px 0;
  aspect-ratio: 933/405;
}
.gj-merit__diagram-ring {
  position: absolute;
  left: 0;
  right: 0;
  margin-inline: auto;
  top: 23.88%;
  width: 36.26%;
  aspect-ratio: 1;
  z-index: auto;
}
.gj-merit__diagram-ring::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/merit-circle.png") center/contain no-repeat;
}
.gj-merit__diagram-ring::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 146px;
  height: 146px;
  background: url("../images/merit-emblem.png") center/contain no-repeat;
  z-index: 3;
}
.gj-merit__circle {
  position: absolute;
  aspect-ratio: 1;
  z-index: 1;
}
.gj-merit__circle--maker {
  left: 0;
  right: 0;
  margin-inline: auto;
  top: 7.73%;
  width: 19.7%;
}
.gj-merit__circle--person {
  left: 22.45%;
  top: 52.93%;
  width: 19.7%;
}
.gj-merit__circle--contractor {
  left: 57.43%;
  top: 52.93%;
  width: 19.7%;
}
.gj-merit__center {
  position: absolute;
  left: 40.62%;
  top: 44.36%;
  width: 18.44%;
  aspect-ratio: 1;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 2px dashed #b9cbe0;
  border-radius: 50%;
  color: #0f4487;
  font-weight: bold;
  font-size: 0.875rem;
}
.gj-merit__circle-label {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  border-radius: 70px;
  color: #fff;
  font-weight: bold;
  font-size: 1.125rem;
  line-height: 1.5;
  white-space: nowrap;
}
.gj-merit__circle-label--maker {
  left: 39.01%;
  top: 6%;
  width: 21.01%;
  background: #044189;
}
.gj-merit__circle-label--person {
  left: 22.76%;
  top: 52.93%;
  width: 19.4%;
  background: #188233;
}
.gj-merit__circle-label--contractor {
  left: 57.52%;
  top: 52.93%;
  width: 19.4%;
  background: #cc6409;
}
.gj-merit__circle-label-sub {
  font-size: 0.875rem;
}
.gj-merit__benefit {
  position: absolute;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 34%;
  padding: 8px;
  background: rgba(255, 255, 255, 0.38);
  border: 2px solid;
  border-radius: 10px;
  text-align: center;
}
.gj-merit__benefit--maker {
  left: 61.95%;
  top: 13.64%;
  width: 21.97%;
  border-color: #3d77bd;
}
.gj-merit__benefit--person {
  left: 24px;
  top: 56.17%;
  width: 18.33%;
  border-color: #188233;
}
.gj-merit__benefit--contractor {
  right: 24px;
  top: 56.17%;
  width: 18.33%;
  border-color: #cc6409;
}
.gj-merit__benefit-icon {
  width: auto;
  height: 36px;
}
.gj-merit__benefit-text {
  margin: 0;
  font-size: 0.75rem;
  font-weight: bold;
  line-height: 1.5;
}
.gj-merit__benefit--maker .gj-merit__benefit-text {
  color: #06408d;
}
.gj-merit__benefit--person .gj-merit__benefit-text {
  color: #188233;
}
.gj-merit__benefit--contractor .gj-merit__benefit-text {
  color: #cc6409;
}
.gj-merit__banner {
  width: 100%;
  max-width: 544px;
  margin: 80px auto 0;
  padding: 18px 48px;
  background: #fff;
  border: 1px solid #9fbbd2;
  border-radius: 153px;
  box-shadow: 0 0 13px 0 #81acc9;
  color: #0f4487;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
}
.gj-merit__columns {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 30px;
  max-width: 932px;
  margin: 60px auto 0;
  padding: 30px;
  background: #fff;
  border-radius: 10px;
}
@media (max-width: 768px) {
  .gj-merit__columns {
    grid-template-columns: 1fr;
  }
}
.gj-merit__col {
  container-type: inline-size;
  display: flex;
  flex-direction: column;
}
.gj-merit__col-head {
  display: flex;
  align-items: center;
  min-height: 106px;
  padding: 0 24px;
  border-radius: 10px 10px 0 0;
  background-repeat: no-repeat;
  background-position: right center;
  background-size: auto 100%;
}
.gj-merit__col--maker .gj-merit__col-head {
  background-color: #06408d;
  background-image: url("../images/merit-maker-merit-head.png");
}
.gj-merit__col--contractor .gj-merit__col-head {
  background-color: #e16f20;
  background-image: url("../images/merit-jigyousya-merit-head.png");
}
.gj-merit__col-title {
  margin: 0;
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.5;
}
.gj-merit__col-inner {
  padding: 28px 23px 24px;
  background: #e7f0f7;
  border-radius: 0 0 10px 10px;
}
@media (min-width: 768px) {
  .gj-merit__col-inner--maker {
    padding-bottom: 28px;
  }
}
.gj-merit__col-catch {
  margin: 0;
  color: #06408d;
  font-size: 1.375rem;
  font-weight: bold;
  text-align: center;
}
.gj-merit__merits {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.gj-merit__merit-pill {
  display: flex;
  align-items: stretch;
  min-height: 29px;
  background: #fff;
  border: 2px solid #4882c5;
  border-radius: 70px;
  overflow: hidden;
}
.gj-merit__merit-no {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 23.75cqw;
  padding: 4px 8px;
  background: #4882c5;
  color: #fff;
  font-size: 0.75rem;
  font-weight: bold;
  text-align: center;
}
.gj-merit__merit-name {
  display: flex;
  align-items: center;
  padding: 2px 12px;
  font-size: 0.875rem;
  font-weight: bold;
  line-height: 1.5;
}
.gj-merit__merit-desc {
  margin: 6px 0 0 16px;
  font-size: 0.8125rem;
  line-height: 1.5;
}
.gj-merit__col--contractor .gj-merit__merit-pill {
  border-color: #faa367;
}
.gj-merit__col--contractor .gj-merit__merit-no {
  background: #faa367;
}
.gj-merit__point-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 361/91;
  margin: 28px 0 0;
  background: url("../images/merit-arrow-blue.svg") center/100% 100% no-repeat;
  color: #fff;
  font-size: 1.25rem;
  line-height: 1.5;
  text-align: center;
}
.gj-merit__point-banner--orange {
  background-image: url("../images/merit-arrow-orange.svg");
}
.gj-merit__point-banner-text {
  position: relative;
  top: -12px;
}
.gj-merit__summary {
  margin: 28px 0 0;
  font-size: 0.875rem;
  line-height: 1.5;
  text-align: center;
}
.gj-merit__summary-accent {
  color: #06408d;
  font-weight: bold;
}
.gj-merit__summary-accent--orange {
  color: #e16f20;
}
.gj-merit__flow {
  margin: 24px 0 0;
}
.gj-merit__flow--maker {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 4px;
}
.gj-merit__flow-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 23.75cqw;
  padding: 16px 8px;
  background: #fff;
  border: 1px solid #4882c5;
  border-radius: 10px;
  box-shadow: 0 0 4px rgba(72, 130, 197, 0.6);
  color: #0f4487;
  font-size: 0.875rem;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
}
.gj-merit__flow-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}
.gj-merit__flow-step-row {
  display: flex;
  align-items: center;
  gap: 6px;
}
.gj-merit__flow-step {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 29.69cqw;
  height: 16.15cqw;
  padding: 0 12px 0 8px;
  background: linear-gradient(180deg, #4882c5, #2e6ab7);
  border: 2px solid #fff;
  border-radius: 10px;
  box-shadow: 0 0 4px rgba(15, 68, 135, 0.4);
  color: #fff;
  font-size: 0.875rem;
  font-weight: bold;
}
.gj-merit__flow-step-circle {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 8.08cqw;
  height: 8.08cqw;
  background: #fff;
  border-radius: 50%;
}
.gj-merit__flow-step-icon {
  width: 5.23cqw;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.gj-merit__flow-arrow {
  flex: none;
  width: 3.33cqw;
  height: 3.8cqw;
  -o-object-fit: contain;
     object-fit: contain;
}
.gj-merit__flow-icon {
  display: block;
  width: 11.4cqw;
  height: 11.4cqw;
  -o-object-fit: contain;
     object-fit: contain;
}
.gj-merit__flow--maker .gj-merit__flow-icon {
  width: 100%;
  height: auto;
}
.gj-merit__flow--contractor {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.gj-merit__flow-row {
  display: flex;
  align-items: center;
  gap: 4px;
}
.gj-merit__flow-node {
  display: flex;
  flex-direction: column;
  width: 23.75cqw;
  height: 33.02cqw;
  padding-bottom: 10px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 4px rgba(250, 163, 103, 0.85);
  overflow: hidden;
  min-width: 88px;
}
.gj-merit__flow-node .gj-merit__flow-icon {
  width: 12.35cqw;
  height: 12.35cqw;
  margin: 14px auto 10px;
}
.gj-merit__flow-node-label {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 4px 0;
  background: #faa367;
  border-top: 2px solid #fff;
  border-bottom: 2px solid #fff;
  box-shadow: 0 0 4px #faa367;
  color: #fff;
  font-size: 0.875rem;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
}
.gj-merit__keypoints {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
@media (max-width: 768px) {
  .gj-merit__keypoints {
    padding-left: 8px;
  }
}
.gj-merit__keypoint-no {
  display: inline-flex;
  align-items: stretch;
  margin: 0;
  border-radius: 6px;
  overflow: hidden;
  font-size: 0.875rem;
  font-weight: bold;
  line-height: 1.5;
}
.gj-merit__keypoint-check {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 8.08cqw;
  background: #0f4487;
}
.gj-merit__keypoint-check-icon {
  width: 4.75cqw;
  height: auto;
}
.gj-merit__keypoint-label {
  display: flex;
  align-items: center;
  padding: 9px 14px;
  background: #fff;
  color: #0f4487;
}
.gj-merit__keypoint-text {
  margin: 8px 0 0;
  font-size: 0.875rem;
  line-height: 1.5;
}
.gj-merit__col--contractor .gj-merit__keypoint-no {
  border-color: #e16f20;
}
.gj-merit__col--contractor .gj-merit__keypoint-check {
  background: #e16f20;
}
.gj-merit__col--contractor .gj-merit__keypoint-label {
  color: #e16f20;
}
.gj-merit__conclusion {
  position: relative;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  height: 175px;
  margin-top: 10px;
  background: #fff;
  border: 2px solid #4882c5;
  border-radius: 10px;
  overflow: hidden;
}
.gj-merit__conclusion-title {
  margin: 0;
  padding: 14px 20px;
  background: #4882c5;
  color: #fff;
  font-size: 1.125rem;
  font-weight: bold;
  text-align: center;
}
.gj-merit__conclusion-body {
  position: relative;
  flex: 1;
  min-height: 103px;
  padding: 16px 20px;
}
.gj-merit__conclusion-text {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.5;
}
.gj-merit__conclusion-img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: auto;
  height: calc(100% + 28px);
}
.gj-merit__col--maker .gj-merit__conclusion-body {
  padding-left: 35.63cqw;
}
.gj-merit__col--contractor .gj-merit__conclusion-body {
  padding-left: 28.5cqw;
}
.gj-merit__col--contractor .gj-merit__conclusion {
  border-color: #faa367;
}
.gj-merit__col--contractor .gj-merit__conclusion-title {
  background: #faa367;
}
@media (max-width: 768px) {
  .gj-merit {
    background-color: #E7F0F6;
    padding-bottom: 48px;
  }
  .gj-merit__body {
    padding-left: 4px;
    padding-right: 4px;
  }
  .gj-merit__lead {
    font-size: 0.875rem;
    color: #333333;
    text-align: center;
  }
  .gj-merit__lead-br--pc {
    display: none;
  }
  .gj-merit__lead-br--sp {
    display: inline;
  }
  .gj-merit__diagram {
    display: block;
    position: relative;
    width: 100%;
    max-width: none;
    margin: 28px 0 0;
    aspect-ratio: 362/339;
  }
  .gj-merit__diagram-ring {
    top: 11.23%;
    width: 63.37%;
  }
  .gj-merit__diagram-ring::after {
    width: 43%;
    height: 43%;
  }
  .gj-merit__circle--maker {
    left: 41.28%;
    right: auto;
    margin-inline: 0;
    top: 1.05%;
    width: 30.91%;
  }
  .gj-merit__circle--person {
    left: 4.81%;
    top: 37.54%;
    width: 29.28%;
  }
  .gj-merit__circle--contractor {
    left: 65.98%;
    top: 37.54%;
    width: 29.28%;
  }
  .gj-merit__circle-label {
    height: 21px;
    font-size: 0.75rem;
  }
  .gj-merit__circle-label--maker {
    left: 38.4%;
    top: 0;
    width: 36.46%;
  }
  .gj-merit__circle-label--person {
    left: 5.25%;
    top: 37.46%;
    width: 28.82%;
  }
  .gj-merit__circle-label--contractor {
    left: 66.02%;
    top: 37.46%;
    width: 28.82%;
  }
  .gj-merit__circle-label-sub {
    font-size: 0.625rem;
  }
  .gj-merit__benefit {
    padding: 6px;
  }
  .gj-merit__benefit--maker {
    left: 0;
    top: 6.78%;
    width: 37.85%;
    height: 23.6%;
  }
  .gj-merit__benefit--person {
    left: 0;
    top: 77.58%;
    width: 37.85%;
    height: 22.42%;
  }
  .gj-merit__benefit--contractor {
    left: 62.15%;
    right: auto;
    top: 77.58%;
    width: 37.85%;
    height: 22.42%;
  }
  .gj-merit__benefit-icon {
    height: 20px;
  }
  .gj-merit__benefit-text {
    font-size: 0.625rem;
  }
  .gj-merit__point-banner-text {
    font-size: 16px;
  }
  .gj-merit__banner {
    width: 100vw;
    max-width: none;
    padding: 0;
    min-height: 59px;
    background: #fff;
    border: 1px solid #9fbbd2;
    border-radius: 0;
    box-shadow: 0 0 13px #81acc9;
    color: #0f4487;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 88px calc(50% - 50vw) 0;
    box-sizing: border-box;
  }
  .gj-merit__columns {
    padding: 20px 16px;
  }
  .gj-merit__col-inner {
    padding-inline: 8px;
  }
  .gj-merit__flow-card {
    width: 24cqw;
  }
  .gj-merit__flow-step {
    width: 35cqw;
  }
  .gj-merit__conclusion {
    height: auto;
  }
  .gj-merit__conclusion-body {
    display: flex;
    justify-content: flex-end;
  }
  .gj-merit__col--maker .gj-merit__conclusion-body, .gj-merit__col--contractor .gj-merit__conclusion-body {
    padding-left: 0;
  }
  .gj-merit__conclusion-text {
    flex: 0 1 207px;
    min-width: 207px;
  }
  .gj-merit__col--maker .gj-merit__conclusion-br {
    display: none;
  }
}

.cta {
  padding-block: 60px 0;
  background-color: #ffffff;
  font-family: "Meiryo", "メイリオ", sans-serif;
  color: #333333;
  position: relative;
}
.cta__design {
  position: relative;
  width: 100%;
  max-width: 960px;
  margin-inline: auto;
  padding-inline: 24px;
}
.cta .pagetop--pc {
  position: absolute;
  top: 0;
  right: 36px;
}
.cta__info {
  display: flex;
  align-items: center;
  gap: 36px;
  max-width: 872px;
  height: 160px;
  padding-inline: 36px;
  margin-inline: auto;
  margin-bottom: 30px;
  background-color: #e7f0f7;
  border: 6px solid #ffffff;
  border-radius: 150px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
}
.cta__info-icon {
  display: flex;
  flex-shrink: 0;
  width: 99px;
  height: 99px;
}
.cta__info-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.cta__info-text {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.5;
  margin: 0;
}
.cta__br--sp {
  display: none;
}
.cta__lead {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 30px;
}
.cta__lead::before, .cta__lead::after {
  content: "";
  display: block;
  flex-shrink: 0;
  width: 57px;
  height: 1px;
  background-color: #333333;
}
.cta__lead::before {
  transform: rotate(45deg);
}
.cta__lead::after {
  transform: rotate(-45deg);
}
.cta__lead-text {
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
  margin: 0;
}
.cta__contact {
  display: flex;
  justify-content: center;
  margin-bottom: 48px;
}
.cta__contact-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 604px;
  height: 85px;
  padding-inline: 14px 24px;
  border: 4px solid #ffffff;
  border-radius: 20px;
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0)), linear-gradient(to bottom, #ff9b56, #f26806);
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.25), inset 4px -4px 4px 0 #bc4c1d;
  text-decoration: none;
  cursor: pointer;
}
.cta__contact-btn-icon {
  display: flex;
  flex-shrink: 0;
  width: 59px;
  height: 59px;
}
.cta__contact-btn-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.cta__contact-btn-label {
  flex: 1;
  font-weight: bold;
  color: #ffffff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
  white-space: nowrap;
}
.cta__contact-btn-title {
  font-size: 23px;
  letter-spacing: 0.04em;
}
.cta__contact-btn-sub {
  font-size: 20px;
  letter-spacing: 0.04em;
}
.cta__contact-btn-arrow {
  display: flex;
  flex-shrink: 0;
  width: 29px;
  height: 29px;
}
.cta__contact-btn-arrow img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.cta__challenge {
  text-align: center;
}
.cta__challenge-lead {
  font-size: 16px;
  line-height: 1.5;
  font-weight: normal;
  margin: 0 0 12px;
}
.cta__challenge-lead strong {
  font-size: 20px;
  font-weight: bold;
}
.cta__challenge-note {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
  margin: 0 0 22px;
}
.cta__challenge-title {
  font-size: 18px;
  line-height: 1.5;
  margin: 0;
  text-align: center;
}
.cta__challenge-title-mark {
  font-size: 32px;
  font-weight: bold;
  color: #06408d;
  background: linear-gradient(transparent 33%, #eeea6d 33%);
}
@media (max-width: 768px) {
  .cta__br--sp {
    display: inline;
  }
  .cta__info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    max-width: 289px;
    height: auto;
    padding-inline: 0;
    margin-inline: auto;
    margin-bottom: 20px;
    background-color: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
  }
  .cta__info-icon {
    display: flex;
    flex-shrink: 0;
    width: 99px;
    height: 99px;
  }
  .cta__info-icon img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .cta__info-text {
    font-size: 16px;
    font-weight: bold;
    line-height: 1.5;
    margin: 0;
    text-align: center;
  }
  .cta__info-text-em {
    color: #06408d;
  }
  .cta__lead {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
  }
  .cta__lead::before, .cta__lead::after {
    content: "";
    display: block;
    flex-shrink: 0;
    width: 20px;
    height: 1px;
    background-color: #333333;
    align-self: flex-end;
    margin-bottom: 16px;
  }
  .cta__lead::before {
    transform: rotate(45deg);
  }
  .cta__lead::after {
    transform: rotate(-45deg);
  }
  .cta__lead-text {
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
    margin: 0;
  }
  .cta__contact {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
  }
  .cta__contact-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 321px;
    height: 85px;
    padding-inline: 12px;
    border: 4px solid #ffffff;
    border-radius: 42px;
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0)), linear-gradient(to bottom, #ff9b56, #f26806);
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.25), inset 4px -4px 4px 0 #bc4c1d;
    text-decoration: none;
    cursor: pointer;
  }
  .cta__contact-btn-icon {
    display: flex;
    flex-shrink: 0;
    width: 59px;
    height: 59px;
  }
  .cta__contact-btn-icon img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .cta__contact-btn-label {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #ffffff;
    text-align: center;
    white-space: nowrap;
  }
  .cta__contact-btn-title {
    font-size: 26px;
    letter-spacing: 0.04em;
  }
  .cta__contact-btn-sub {
    font-size: 16px;
    letter-spacing: 0.04em;
  }
  .cta__challenge {
    text-align: center;
    padding: 0 20px;
  }
  .cta__challenge-lead {
    font-size: 14px;
    line-height: 1.5;
    font-weight: normal;
    margin: 0 0 12px;
  }
  .cta__challenge-lead strong {
    font-size: 18px;
    font-weight: bold;
  }
  .cta__challenge-note {
    font-size: 14px;
    font-weight: bold;
    line-height: 1.5;
    margin: 0 0 16px;
  }
  .cta__challenge-title {
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
    text-align: center;
  }
  .cta__challenge-title-mark {
    font-size: clamp(20px, 8vw, 32px);
    font-weight: bold;
    color: #06408d;
    background: linear-gradient(transparent 33%, #eeea6d 33%);
    white-space: nowrap;
    position: relative;
    left: -12px;
  }
}

.gj-challenge {
  background-color: #ffffff;
  padding-bottom: 80px;
  position: relative;
}
.gj-challenge__v-area {
  max-width: 960px;
  margin-inline: auto;
  background-color: #e7f0f7;
}
.gj-challenge__v-shape {
  aspect-ratio: 11.343/1;
  background-color: #ffffff;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.gj-challenge__accordion-wrap {
  width: 100%;
  max-width: 960px;
  margin-inline: auto;
  padding-inline: 0;
  padding-bottom: 0;
  transition: background-color 0.2s ease;
  display: flow-root;
  background-color: #E7F0F6;
}
.gj-challenge__accordion-wrap > .accordion__trigger {
  margin-bottom: 0;
}
.gj-challenge__accordion-wrap > .accordion__panel {
  background-color: #ffffff;
}
.gj-challenge__accordion-wrap.accordion--open > .accordion__panel {
  max-height: 3000px;
}
.gj-challenge__intro {
  width: 100%;
  max-width: 960px;
  margin-inline: auto;
  padding-inline: 24px;
  background-color: #e7f0f7;
  text-align: center;
  padding-top: 16px;
  padding-bottom: 16px;
}
.gj-challenge__catch {
  font-size: 32px;
  font-weight: bold;
  color: #333333;
  margin-bottom: 20px;
  text-align: left;
}
.gj-challenge__desc {
  font-size: 14px;
  line-height: 1.5;
  color: #000;
  text-align: left;
  max-width: 872px;
  margin-inline: auto;
}
.gj-challenge__stepup {
  max-width: 960px;
  margin-inline: auto;
  aspect-ratio: 960/345;
  background-image: url("../images/gj-challenge-stepup.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 3%;
}
.gj-challenge__stepup-text {
  margin: 0;
  font-family: "Meiryo", "メイリオ", sans-serif;
  font-weight: bold;
  font-size: 30px;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-align: center;
}
.gj-challenge__stepup-text-main {
  color: #333333;
}
.gj-challenge__stepup-text-to {
  color: #333333;
  font-size: 22px;
  font-weight: bold;
}
.gj-challenge__stepup-text-accent {
  color: #06408d;
}
.gj-challenge__inner {
  width: 100%;
  max-width: 890px;
  margin-inline: auto;
  padding-inline: 24px;
}
@media (max-width: 768px) {
  .gj-challenge__inner {
    padding-inline: 18px;
  }
}
.gj-challenge__overview-area {
  margin-top: 40px;
}
.gj-challenge__ov-frame {
  background-color: #e16f20;
  border-radius: 10px;
  padding: 2px;
}
.gj-challenge__ov-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
}
.gj-challenge__ov-row:first-child .gj-challenge__ov-label {
  border-radius: 8px 0 0 0;
}
.gj-challenge__ov-row:first-child .gj-challenge__ov-cell {
  border-radius: 0 8px 0 0;
}
.gj-challenge__ov-row:last-child .gj-challenge__ov-label {
  border-radius: 0 0 0 8px;
}
.gj-challenge__ov-row:last-child .gj-challenge__ov-cell {
  border-radius: 0 0 8px 0;
  border-bottom: 1px solid #ffd1b2;
}
.gj-challenge__ov-label {
  width: 228px;
  height: 82px;
  background: linear-gradient(to bottom, #ffaa4a, #ff7c22);
  border: 1px solid #ffd1b2;
  color: #ffffff;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
}
.gj-challenge__ov-cell {
  padding: 0 28px;
  height: 82px;
  background-color: #ffffff;
  border-top: 1px solid #ffd1b2;
  border-right: 1px solid #ffd1b2;
  vertical-align: middle;
}
.gj-challenge__ov-list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 16px;
  line-height: 1.5;
}
.gj-challenge__ov-list li {
  display: flex;
  gap: 0.5em;
}
.gj-challenge__ov-list li::before {
  content: "・";
  flex-shrink: 0;
}
.gj-challenge__ov-note {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.5;
}
.gj-challenge__comparison-area {
  margin-top: 50px;
}
.gj-challenge__comp-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  font-size: 26px;
  font-weight: bold;
  color: #333333;
  text-align: center;
  margin-bottom: 8px;
}
.gj-challenge__comp-heading::before, .gj-challenge__comp-heading::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: #333333;
  flex-shrink: 0;
}
.gj-challenge__comp-heading--blue {
  color: #06408d;
}
.gj-challenge__comp-heading--orange {
  color: #eb7421;
}
.gj-challenge__comp-heading-text {
  display: block;
}
.gj-challenge__comp-heading-row {
  display: contents;
}
.gj-challenge__comp-heading-spacer {
  margin-bottom: 28px;
}
.gj-challenge__comp-tabs {
  display: none;
}
.gj-challenge__comp-table-wrap {
  margin-top: 28px;
}
.gj-challenge__comp-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
}
.gj-challenge__comp-spacer {
  width: 230px;
  border: none;
  background: transparent;
}
.gj-challenge__comp-col {
  width: 330px;
  height: 51px;
  font-size: 20px;
  font-weight: bold;
  color: #ffffff;
  text-align: center;
  vertical-align: middle;
  border-top: 1px solid #d5e1ef;
  border-right: 1px solid #d5e1ef;
}
.gj-challenge__comp-col--gj {
  background: linear-gradient(to right, #318aff, #6da7ff);
  border-left: 1px solid #d5e1ef;
  border-radius: 10px 10px 0 0;
}
.gj-challenge__comp-col--challenge {
  background: linear-gradient(to right, #ff974e, #ffa743);
  border-left: 4px solid #ffffff;
  border-radius: 10px 10px 0 0;
}
.gj-challenge__comp-label {
  background-color: #f0f9ff;
  border-left: 1px solid #d5e1ef;
  border-bottom: 1px solid #d5e1ef;
  border-right: 1px solid #d5e1ef;
  font-size: 16px;
  font-weight: bold;
  color: #333333;
  text-align: center;
  vertical-align: middle;
  padding: 8px 12px;
}
tr:first-child .gj-challenge__comp-label {
  border-top: 1px solid #d5e1ef;
  border-radius: 10px 0 0 0;
}
tr:last-child .gj-challenge__comp-label {
  border-radius: 0 0 0 10px;
}
.gj-challenge__comp-cell {
  font-size: 14px;
  line-height: 1.5;
  color: #000;
  text-align: center;
  vertical-align: middle;
  padding: 8px 12px;
  border-bottom: 1px solid #d5e1ef;
  border-right: 1px solid #d5e1ef;
}
.gj-challenge__comp-cell--gj {
  background-color: #ffffff;
}
.gj-challenge__comp-cell--challenge {
  background-color: #fffdf6;
}
.gj-challenge__comp-cell--logo {
  height: 95px;
  padding: 8px;
}
tr:last-child .gj-challenge__comp-cell--gj {
  border-radius: 0;
}
tr:last-child .gj-challenge__comp-cell--challenge {
  border-radius: 0 0 10px 0;
}
.gj-challenge__comp-logo {
  display: block;
  margin-inline: auto;
  height: 80px;
  width: auto;
}
.gj-challenge .pagetop {
  position: absolute;
  bottom: 12px;
  left: 0;
  right: 0;
  margin-inline: auto;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 768px) {
  .gj-challenge .pagetop {
    left: auto;
    right: 24px;
    margin-inline: 0;
  }
}
@media (max-width: 1024px) {
  .gj-challenge__catch {
    font-size: 26px;
  }
  .gj-challenge__comp-heading {
    font-size: 22px;
  }
  .gj-challenge__comp-col {
    font-size: 16px;
  }
  .gj-challenge__comp-label {
    font-size: 14px;
  }
  .gj-challenge__comp-cell {
    font-size: 13px;
  }
  .gj-challenge__ov-list {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .gj-challenge__intro {
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .gj-challenge__catch {
    font-size: 20px;
  }
  .gj-challenge__desc {
    font-size: 14px;
    text-align: left;
  }
  .gj-challenge__stepup {
    aspect-ratio: auto;
    flex-direction: column;
    background-image: none;
    padding: 0;
    justify-content: flex-start;
    align-items: center;
  }
  .gj-challenge__stepup-text {
    width: 100%;
    background: #fff;
    padding: 20px 16px 0;
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: 0.1em;
    text-align: center;
  }
  .gj-challenge__stepup-text-main {
    font-size: 20px;
  }
  .gj-challenge__stepup-text-to {
    font-size: 14px;
  }
  .gj-challenge__stepup-text-accent {
    color: #06408d;
  }
  .gj-challenge__stepup::after {
    content: "";
    display: block;
    width: 100%;
    aspect-ratio: 960/345;
    background: url("../images/gj-challenge-stepup.png") center/cover no-repeat;
  }
  .gj-challenge__ov-frame {
    border-radius: 10px;
  }
  .gj-challenge__ov-table {
    table-layout: auto;
  }
  .gj-challenge__ov-row {
    display: block;
    width: 100%;
  }
  .gj-challenge__ov-row:first-child .gj-challenge__ov-label {
    border-radius: 8px 8px 0 0;
  }
  .gj-challenge__ov-row:first-child .gj-challenge__ov-cell {
    border-radius: 0;
  }
  .gj-challenge__ov-row:last-child .gj-challenge__ov-label {
    border-radius: 0;
  }
  .gj-challenge__ov-row:last-child .gj-challenge__ov-cell {
    border-radius: 0 0 8px 8px;
    border-bottom: 1px solid #ffd1b2;
  }
  .gj-challenge__ov-label {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 58px;
  }
  .gj-challenge__ov-cell {
    display: block;
    width: 100%;
    height: auto;
    padding: 12px 16px;
    border-top: none;
  }
  .gj-challenge__ov-list {
    font-size: 12px;
  }
  .gj-challenge__comparison-area {
    margin-top: 40px;
  }
  .gj-challenge__comp-heading {
    font-size: 20px;
    flex-direction: row;
    gap: 12px;
  }
  .gj-challenge__comp-heading::before, .gj-challenge__comp-heading::after {
    width: 40px;
    max-width: 40px;
    background-color: #999999;
  }
  .gj-challenge__comp-heading-text {
    display: block;
    text-align: center;
  }
  .gj-challenge__comp-heading-row {
    display: block;
  }
  .gj-challenge__comp-tabs {
    display: flex;
    width: 100%;
    gap: 6px;
  }
  .gj-challenge__comp-tab {
    position: relative;
    isolation: isolate;
    flex: 1;
    height: 51px;
    border: 1px solid #d5e1ef;
    border-bottom: none;
    border-radius: 10px 10px 0 0;
    font-size: 14px;
    font-weight: bold;
    color: #ffffff;
    cursor: pointer;
    background-color: #acacac;
  }
  .gj-challenge__comp-tab::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: 0;
    border-radius: inherit;
    transition: opacity 0.2s ease;
    pointer-events: none;
  }
  .gj-challenge__comp-tab.gj-challenge__comp-tab--gj::before {
    background: linear-gradient(to right, #318aff, #6da7ff);
  }
  .gj-challenge__comp-tab.gj-challenge__comp-tab--challenge::before {
    background: linear-gradient(to right, #ff974e, #ffa743);
  }
  .gj-challenge__comp-tab.is-active::before {
    opacity: 1;
  }
  .gj-challenge__comp-spacer {
    display: none;
  }
  .gj-challenge__comp-col {
    display: none;
  }
  .gj-challenge__comp-table-wrap {
    margin-top: 0;
    overflow-x: auto;
  }
  .gj-challenge__comp-table {
    table-layout: auto;
    width: 100%;
  }
  .gj-challenge__comp-label {
    font-size: 12px;
    width: 109px;
    white-space: nowrap;
    border-top: 1px solid #d5e1ef;
    border-radius: 0;
  }
  tr:last-child .gj-challenge__comp-label {
    border-radius: 0 0 0 10px;
  }
  .gj-challenge__comp-table-wrap:not([data-active-col=challenge]) [data-col=challenge] {
    display: none;
  }
  .gj-challenge__comp-table-wrap[data-active-col=challenge] [data-col=gj] {
    display: none;
  }
  .gj-challenge__comp-cell {
    font-size: 12px;
    padding: 8px 6px;
  }
  .gj-challenge__comp-logo {
    height: 60px;
  }
}
@media (max-width: 480px) {
  .gj-challenge__catch {
    font-size: 18px;
  }
  .gj-challenge__comp-heading {
    font-size: 18px;
  }
}

.footer__gov {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px 24px;
  max-width: 960px;
  margin: 0 auto;
  padding: 20px 16px;
}
.footer__gov::after {
  content: "";
  flex-basis: 100%;
  height: 1px;
  background-color: #cdcdcd;
  margin-inline: 32px;
}
@media (max-width: 768px) {
  .footer__gov {
    gap: 8px 12px;
    padding: 16px;
    padding-top: 100px;
  }
  .footer__gov::after {
    margin-inline: 0;
  }
}

.footer__gov-banner {
  flex: 0 0 auto;
  display: inline-block;
  transition: opacity 0.3s;
}
.footer__gov-banner:hover {
  opacity: 0.65;
}

.footer__gov-banner img {
  width: 163px;
}
@media (max-width: 768px) {
  .footer__gov-banner img {
    max-width: 120px;
    height: auto;
  }
}

.footer__gov-note {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: #333333;
}
@media (max-width: 768px) {
  .footer__gov-note {
    flex: 1;
    min-width: 0;
    font-size: 12px;
    text-align: left;
  }
}

.footer__related {
  padding: 24px 16px;
  background-color: #ffffff;
}

.footer__related-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  max-width: 777px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}
@media (max-width: 768px) {
  .footer__related-list {
    grid-template-columns: 1fr;
    max-width: 320px;
  }
}

.footer__related-list a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 12px;
  border: 1px solid #999999;
  background-color: #ffffff;
  box-sizing: border-box;
  transition: opacity 0.3s;
}
.footer__related-list a:hover {
  border-color: #000;
  opacity: 0.6;
}

.footer__related-list img {
  max-width: 100%;
  height: auto;
}

.footer__main {
  background-color: #e8e8e8;
}

.footer__main-inner {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px 24px;
  max-width: 960px;
  margin: 0 auto;
  padding: 16px;
}
@media (max-width: 768px) {
  .footer__main-inner {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    color: #252525;
  }
}

.footer__logo {
  display: inline-block;
  margin-bottom: 8px;
}

.footer__logo img {
  width: 320px;
  max-width: 100%;
}

.footer__address-list p {
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
  color: #333333;
}
@media (max-width: 768px) {
  .footer__address-list p {
    color: #252525;
  }
}

.footer__org-name {
  font-size: 1.2em;
  font-weight: 700;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin: 0;
  padding: 10px 0;
  list-style: none;
  font-size: 12px;
}
@media (max-width: 768px) {
  .footer__nav {
    justify-content: center;
  }
}

.footer__nav li {
  padding: 0 8px;
  margin-bottom: 8px;
  line-height: 1.5;
  border-right: 1px solid #b6b6b6;
}
.footer__nav li:last-child {
  border-right: none;
}

.footer__nav a {
  color: #333333;
  text-decoration: none;
}
.footer__nav a:hover {
  color: #888888;
}
@media (max-width: 768px) {
  .footer__nav a {
    color: #333333;
  }
}

.footer__address {
  margin: 0;
  padding: 8px 16px;
  text-align: center;
  font-size: 12px;
  font-style: normal;
  color: #ffffff;
  background-color: #333333;
}
@media (max-width: 768px) {
  .footer__address {
    background-color: #e8e8e8;
    color: #252525;
  }
}

.section-heading {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 71px;
  padding: 12px 24px;
  background: linear-gradient(to left, #003399, #0b74ff);
  color: #ffffff;
  font-family: "Meiryo", "メイリオ", sans-serif;
  font-size: 26px;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-align: center;
}
@media (max-width: 768px) {
  .section-heading {
    min-height: 56px;
    padding: 10px 20px;
    font-size: 20px;
  }
}

.section-heading--expandable {
  padding-right: 56px;
  padding-left: 56px;
  cursor: pointer;
}
@media (max-width: 768px) {
  .section-heading--expandable {
    padding-right: 44px;
    padding-left: 44px;
  }
}

.section-heading__toggle {
  position: absolute;
  top: 50%;
  right: 24px;
  width: 28px;
  height: 28px;
  transform: translateY(-50%);
}
.section-heading__toggle::before, .section-heading__toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: #ffffff;
  transform: translate(-50%, -50%);
}
.section-heading__toggle::before {
  width: 100%;
  height: 4px;
}
.section-heading__toggle::after {
  width: 4px;
  height: 100%;
  transition: opacity 0.2s ease;
}

.section-heading--expandable[aria-expanded=true] .section-heading__toggle::after {
  opacity: 0;
}

.accordion__heading {
  margin: 0;
}

.accordion__trigger {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
}

.accordion__panel {
  overflow: hidden;
  max-height: 0;
  visibility: hidden;
  transition: max-height 0.2s ease, visibility 0s linear 0.2s;
}

.accordion__text {
  margin: 0;
  padding: 24px;
}

.accordion--open > .accordion__panel {
  max-height: 600px;
  visibility: visible;
  transition: max-height 0.2s ease, visibility 0s;
}

.button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: inline-block;
  padding: 14px 32px;
  border: none;
  border-radius: 9999px;
  font-size: 16px;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.button:hover {
  opacity: 0.85;
}
.button:focus-visible {
  outline: 3px solid rgba(26, 115, 232, 0.5);
  outline-offset: 2px;
}

.button--primary {
  background-color: #1a73e8;
  color: #fff;
}

.pagetop {
  position: absolute;
  display: inline-block;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.pagetop:hover {
  opacity: 0.8;
}
.pagetop:focus-visible {
  outline: 3px solid #0f4487;
  outline-offset: 2px;
  border-radius: 50%;
}
.pagetop__icon {
  display: block;
  width: 49px;
  height: 50px;
}
@media (max-width: 768px) {
  .pagetop--pc {
    display: none;
  }
}
.pagetop--sp {
  display: none;
}
@media (max-width: 768px) {
  .pagetop--sp {
    display: inline-block;
  }
}

.faq__accordion-wrap {
  width: 100%;
  max-width: 960px;
  margin-inline: auto;
  padding-inline: 0;
}
.faq__accordion-wrap.accordion--open > .accordion__panel {
  max-height: 2000px;
}
.faq__heading {
  margin: 0;
}
.faq__body {
  width: 100%;
  max-width: 938px;
  margin-inline: auto;
  padding-inline: 24px;
  padding-top: 40px;
  padding-bottom: 42px;
}
.faq__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.faq__question {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-height: 64px;
  padding: 12px 16px;
  background-color: #ffffff;
  border: 2px solid #d5edff;
  border-radius: 10px;
  transition: border-radius 0.2s ease;
  cursor: pointer;
  text-align: left;
  font-family: "Meiryo", "メイリオ", sans-serif;
}
.faq__item.accordion--open .faq__question {
  border-radius: 10px 10px 0 0;
}
.faq__q-icon {
  flex-shrink: 0;
  width: 33px;
  height: 33px;
}
.faq__q-icon img {
  display: block;
  width: 100%;
  height: 100%;
}
.faq__question-text {
  flex: 1;
  font-size: 18px;
  font-weight: bold;
  color: #06408d;
  line-height: 1.5;
}
.faq__toggle {
  position: relative;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}
.faq__toggle::before, .faq__toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: #4882c5;
  transform: translate(-50%, -50%);
}
.faq__toggle::before {
  width: 16px;
  height: 3px;
}
.faq__toggle::after {
  width: 3px;
  height: 16px;
  transition: opacity 0.2s ease;
}
.faq__item.accordion--open .faq__toggle::after {
  opacity: 0;
}
.faq__answer {
  background-color: #f6fbff;
  border: 2px solid #d5edff;
  border-top: none;
  border-radius: 0 0 10px 10px;
}
.faq__answer-inner {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
}
.faq__a-icon {
  flex-shrink: 0;
  width: 33px;
  height: 33px;
  margin-top: 3px;
}
.faq__a-icon img {
  display: block;
  width: 100%;
  height: 100%;
}
.faq__answer-text {
  flex: 1;
  margin: 0;
  font-family: "Meiryo", "メイリオ", sans-serif;
  font-size: 16px;
  color: #333333;
  line-height: 1.5;
}
.faq__more {
  display: flex;
  justify-content: flex-end;
  margin-top: 30px;
}
.faq__more-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 20px;
  min-height: 42px;
  background-color: #c7e3f6;
  border: 1px solid #8bb0e2;
  border-radius: 10px;
  font-family: "Meiryo", "メイリオ", sans-serif;
  font-size: 16px;
  color: #06408d;
  text-decoration: none;
  white-space: nowrap;
}
.faq__more-arrow {
  flex-shrink: 0;
  width: 10px;
  height: 14px;
  transform: rotate(90deg);
}
@media (max-width: 768px) {
  .faq__question {
    min-height: 72px;
    align-items: flex-start;
    padding-top: 14px;
    padding-bottom: 14px;
  }
  .faq__q-icon {
    margin-top: 2px;
  }
  .faq__question-text {
    font-size: 14px;
  }
  .faq__answer-text {
    font-size: 14px;
    line-height: 1.5;
  }
  .faq__more {
    display: block;
  }
  .faq__more-link {
    display: flex;
    justify-content: space-between;
    width: 100%;
    font-size: 14px;
    min-height: 58px;
    padding: 12px 16px;
    white-space: normal;
  }
}

.cta-last {
  position: relative;
  padding-block: 60px;
  background-color: #ffffff;
  font-family: "Meiryo", "メイリオ", sans-serif;
  color: #333333;
}
.cta-last__container {
  width: 100%;
  max-width: 960px;
  margin-inline: auto;
  padding-inline: 24px;
}
@media (max-width: 768px) {
  .cta-last__container {
    padding-inline: 18px;
  }
}
.cta-last__inner {
  max-width: 890px;
  margin-inline: auto;
  padding: 50px 40px;
  background-color: #ebf6ff;
  border-radius: 10px;
}
.cta-last__intro {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 16px;
}
.cta-last__intro-logo {
  flex-shrink: 0;
  width: 99px;
  height: 99px;
  border-radius: 50%;
  overflow: hidden;
}
.cta-last__intro-logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.cta-last__intro-text {
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.5;
  margin: 0;
}
.cta-last__intro-text-em {
  color: #06408d;
}
.cta-last__lead {
  text-align: center;
  margin: 0 0 16px;
}
.cta-last__lead-text {
  display: inline-flex;
  align-items: flex-end;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: normal;
  line-height: 1.5;
}
.cta-last__lead-text::before, .cta-last__lead-text::after {
  content: "";
  display: block;
  flex-shrink: 0;
  width: 0.875rem;
  height: 1px;
  background-color: #333333;
  margin-bottom: 10px;
}
.cta-last__lead-text::before {
  transform: rotate(45deg);
}
.cta-last__lead-text::after {
  transform: rotate(-45deg);
}
.cta-last__tel-block {
  text-align: center;
}
.cta-last__tel-banner {
  display: inline-block;
  padding: 8px 56px;
  background-color: #ffffff;
  border-radius: 7px;
  font-size: 1.125rem;
  font-weight: bold;
  color: #06408d;
  white-space: nowrap;
  margin: 0 0 20px;
}
.cta-last__org {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 1.125rem;
  font-weight: bold;
  margin: 0 0 12px;
}
@media (max-width: 768px) {
  .cta-last__org {
    font-size: 0.875rem;
  }
}
.cta-last__org-line {
  display: block;
  width: 21px;
  height: 2px;
  background-color: #333333;
  flex-shrink: 0;
}
.cta-last__info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
@media (max-width: 768px) {
  .cta-last__info-list {
    align-items: flex-start;
    text-align: left;
  }
}
.cta-last__info-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  line-height: 1.5;
}
.cta-last__info-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.cta-last__info-main {
  font-size: 1.25rem;
  font-weight: bold;
  color: #06408d;
  text-decoration: none;
}
.cta-last__info-main:hover {
  text-decoration: underline;
}
.cta-last__info-sub {
  font-size: 0.875rem;
  font-weight: bold;
  color: #06408d;
}
.cta-last .pagetop {
  bottom: -16px;
  left: 0;
  right: 0;
  margin-inline: auto;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 768px) {
  .cta-last {
    background-color: #ebf6ff;
    padding-block: 40px;
  }
  .cta-last .pagetop {
    bottom: -80px;
    left: auto;
    right: 24px;
    margin-inline: 0;
  }
  .cta-last__inner {
    padding: 0 0 32px;
    background-color: transparent;
    border-radius: 0;
  }
  .cta-last__intro {
    flex-direction: column;
    text-align: center;
  }
  .cta-last__tel-banner {
    padding-inline: 24px;
    white-space: normal;
  }
  .cta-last__info-item {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .cta-last__info-main, .cta-last__info-sub {
    white-space: nowrap;
  }
}

.float-contact {
  position: fixed;
  top: 10%;
  right: 0;
  z-index: 1;
}
.float-contact__link {
  display: inline-block;
  transition: 0.3s;
}
.float-contact__link:hover {
  opacity: 0.7;
}
.float-contact__img {
  display: block;
}
.float-contact__img--sp {
  display: none;
}
@media (max-width: 768px) {
  .float-contact {
    top: auto;
    bottom: 0;
    width: 70%;
    max-width: 180px;
  }
  .float-contact__img--pc {
    display: none;
  }
  .float-contact__img--sp {
    display: block;
    width: 100%;
    vertical-align: bottom;
  }
}

/*# sourceMappingURL=style.css.map */