*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

body {
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", meiryo, sans-serif;
  color: #000;
  background-color: #fff;
  line-height: 1.5;
  font-feature-settings: "palt" 1;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 24px 24px 24px 48px;
  box-sizing: border-box;
  border-radius: 120px;
  background: #fc0;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  color: #0a1464;
  border: none;
  cursor: pointer;
  font-family: inherit;
  max-width: 100%;
}
.cta-button--wide {
  width: 100%;
  max-width: 500px;
  justify-content: center;
}
.cta-button__lines {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
  line-height: 1.2;
  min-width: 0;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cta-button__lines {
    color: var(--Blue-5, #0A1464);
    text-align: center;
    font-feature-settings: "palt" on;
    font-family: "Noto Sans JP";
    font-size: 17px;
    font-style: normal;
    font-weight: 900;
    line-height: 100%; /* 17px */
    letter-spacing: 1.02px;
  }
}
.cta-button__primary {
  margin: 0;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0.06em;
}
@media (max-width: 768px) {
  .cta-button__primary.small {
    color: var(--Blue-5, #0A1464);
    text-align: center;
    font-feature-settings: "palt" on;
    font-family: "Noto Sans JP";
    font-size: 14px;
    font-style: normal;
    font-weight: 900;
    line-height: 100%; /* 14px */
    letter-spacing: 0.84px;
  }
}
.cta-button__sub {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.cta-button__icon {
  display: block;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  object-fit: contain;
}
@media (max-width: 768px) {
  .cta-button__icon {
    height: 40px;
    width: 40px;
  }
}

.header {
  background: #0a1464;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 clamp(12px, 2vw, 32px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  position: relative;
}
.header__inner {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 40px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  max-width: 1920px;
}
.header__left {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 48px;
  min-width: 0;
  flex: 1 1 auto;
}
.header__brands {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 32px;
}
.header__brand {
  display: flex;
  align-items: center;
  color: #fff;
  text-decoration: none;
  line-height: 0;
}
.header__brand-img {
  display: block;
  width: 229px;
  height: 20px;
  aspect-ratio: 229/20;
}
.header__brand:nth-child(2) .header__brand-img {
  width: 171px;
  height: 20px;
  aspect-ratio: 171/20;
}
.header__nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex: 1 1 auto;
  min-width: 0;
}
.header__nav-link {
  color: var(--White-white, #FFF);
  text-align: center;
  font-family: "Noto Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 18px */
  text-decoration: none;
  border: none;
  white-space: nowrap;
}
.header__right {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 12px;
}
.header__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 5px 20px 7px;
  border: none;
  border-radius: 20px;
  background: #fc0;
  color: #000;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}
.header__misumi-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
  color: inherit;
  text-decoration: none;
}
.header__misumi-img {
  display: block;
  height: 19px;
  width: auto;
  flex-shrink: 0;
}
.header__misumi-img--drawer {
  height: 22px;
  margin-inline: auto;
}
.header__burger {
  display: none;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.header__burger[aria-expanded=true] .header__burger-bar:nth-child(2) {
  opacity: 0;
}
.header__burger[aria-expanded=true] .header__burger-bar:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.header__burger[aria-expanded=true] .header__burger-bar:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}
.header__burger-bar {
  display: block;
  width: 18px;
  height: 1.5px;
  border-radius: 1px;
  background: #fff;
}
.header__burger-bar:nth-child(2) {
  transition: opacity 0.15s ease;
}
.header__burger-bar:nth-child(1), .header__burger-bar:nth-child(3) {
  transition: transform 0.15s ease;
  transform-origin: center;
}
.header__drawer {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  bottom: auto;
  z-index: 150;
  background: #fff;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.2);
  padding: 30px 16px 64px;
  max-height: calc(100vh - 84px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.header__drawer[hidden] {
  display: none;
}
.header__drawer-inner {
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: stretch;
}
.header__drawer-nav {
  width: 100%;
}
.header__drawer-link {
  display: block;
  height: 54px;
  padding: 7px 16px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #bfbfbf;
  color: #000;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  text-align: left;
}
.header__drawer-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.header__drawer-title {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  color: #0a1464;
  text-align: center;
  line-height: 1.4;
  text-decoration: none;
  border: none;
}
.header__drawer-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.header__drawer-sholder {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 700;
  color: #0a1464;
  letter-spacing: 0.72px;
  line-height: 1;
  white-space: nowrap;
}
.header__drawer-sholder::before, .header__drawer-sholder::after {
  content: "";
  width: 15px;
  height: 2px;
  background: #0a1464;
  border-radius: 4px;
  flex: 0 0 auto;
}
.header__drawer-sholder::before {
  transform: rotate(68deg);
}
.header__drawer-sholder::after {
  transform: rotate(112deg);
}
.header__drawer.cta-button {
  width: 343px;
  max-width: 100%;
  padding: 16px 16px 16px 32px;
  border-radius: 120px;
  justify-content: center;
}
.header__drawer.cta-button__icon {
  width: 40px;
  height: 40px;
}
.header__drawer-misumi {
  display: block;
  width: 123.5px;
  height: 28px;
  object-fit: contain;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .header__drawer {
    display: none;
  }
}
@media (max-width: 1024px) and (min-width: 768px) {
  .header__nav-link {
    display: none;
  }
  .header__btn {
    padding-inline: 14px;
    font-size: 13px;
  }
}
@media (max-width: 768px) {
  .header {
    min-height: 48px;
    padding: 0 14px;
  }
  .header__inner {
    max-width: none;
    width: 100%;
    padding-inline: 0;
    margin-inline: 0;
    gap: 0;
    align-items: center;
  }
  .header__left {
    flex-wrap: nowrap;
    gap: 0;
    flex: 1 1 auto;
    min-width: 0;
  }
  .header__brands {
    gap: 16px;
    flex-shrink: 0;
  }
  .header__brand-img {
    width: 160px;
    height: 14px;
    max-width: none;
    aspect-ratio: 160/14;
  }
  .header__brand:nth-child(2) .header__brand-img {
    width: 120px;
    height: 14px;
    max-width: none;
    aspect-ratio: 120/14;
  }
  .header__misumi-img {
    height: 16px;
  }
  .header__right {
    display: none;
  }
  .header__nav {
    display: none;
  }
  .header__nav-link {
    text-align: left;
    white-space: normal;
    font-size: 13px;
    line-height: 1.35;
    text-decoration: none;
    color: var(--Blue-5, #0A1464);
    text-align: center;
    font-family: "Noto Sans";
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%; /* 33.6px */
  }
  .header__burger {
    display: inline-flex;
    align-self: center;
    margin-top: 0;
    width: 40px;
    height: 48px;
  }
}

.fv {
  position: relative;
  height: 600px;
  min-height: 600px;
  margin: 0;
  overflow: hidden;
}
.fv__bg {
  position: absolute;
  inset: 0;
  background-color: #e2eaf0;
  background-image: url("../img/image_302.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.fv__inner {
  position: relative;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  display: flex;
  box-sizing: border-box;
}
.fv__title-line {
  display: inline-block;
  white-space: nowrap;
}
.fv__title-row {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 10px;
  margin-top: 4.3px;
}
.fv__title-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px 12px;
  border-radius: 3px;
  background: linear-gradient(180deg, #0a1464 0%, #0f218b 55%, #5bbdce 100%);
  color: #fff;
  font-size: 56px;
  font-weight: 700;
  letter-spacing: 1.12px;
  line-height: 1;
  white-space: nowrap;
}

@media (min-width: 1024px) {
  .fv > .fv__inner.l-container {
    max-width: 1920px;
    padding: 93px 0 0 313px;
    align-items: flex-end;
  }
  .fv__inner {
    flex-direction: row;
    align-items: stretch;
    min-height: 600px;
    height: 600px;
  }
  .fv__copy {
    z-index: 2;
    flex: 0 0 auto;
    align-self: stretch;
    margin-right: -70px;
  }
  .fv__copy .cta-button {
    width: 473px;
    padding: 22px 28px 22px 44px;
    justify-content: center;
  }
  .fv__copy .cta-button__primary {
    font-size: 22px;
    white-space: nowrap;
  }
  .fv__copy .cta-button__sub {
    font-size: 17px;
    white-space: nowrap;
  }
  .fv__title {
    margin: 0 0 40px;
    font-size: 56px;
    font-weight: 700;
    color: #0a1464;
    line-height: 1.45;
    letter-spacing: 1.68px;
    font-feature-settings: "palt" 1;
  }
  .fv__title-wo {
    color: var(--Blue-5, #0A1464);
    font-feature-settings: "palt" on;
    font-family: "Noto Sans JP";
    font-size: 48px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 1.44px;
    margin-left: 2px;
  }
  .fv__title-kouritsu {
    color: var(--Blue-5, #0A1464);
    font-feature-settings: "palt" on;
    font-family: "Noto Sans JP";
    font-size: 56px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 1.68px;
    margin-left: -6px;
  }
  .fv__lead {
    color: #0a1464;
    font-feature-settings: "palt" on;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 56px;
    font-size: 32px;
    letter-spacing: 3.2px;
    text-align: left;
  }
  .fv__sholder {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 8px;
    margin: 0 0 12px;
    font-size: 16px;
    font-weight: 700;
    color: #0a1464;
    letter-spacing: 0.06em;
    width: 473px;
    text-align: center;
  }
  .fv__sholder::before, .fv__sholder::after {
    content: "";
    width: 15px;
    height: 15px;
    background-size: contain;
    background-repeat: no-repeat;
  }
  .fv__sholder::before {
    background-image: url("../img/line_left.svg");
    transform: translateY(-4px);
    margin-right: -8px;
  }
  .fv__sholder::after {
    background-image: url("../img/line_right.svg");
    transform: translateY(-4px);
  }
  .fv__visual {
    flex: 1;
    height: auto;
    overflow: hidden;
  }
  .fv__visual img {
    display: block;
    width: auto;
    height: 511px;
    object-fit: cover;
    object-position: left bottom;
  }
}
@media (max-width: 1023px) {
  .fv > .fv__inner.l-container {
    padding: 64px 16px 0;
    align-items: center;
  }
  .fv__inner {
    flex-direction: column;
    justify-content: flex-start;
    min-height: 600px;
    height: 600px;
  }
  .fv__copy {
    z-index: 2;
    width: 343px;
    margin: 0 auto -28px;
    overflow: hidden;
    align-self: center;
  }
  .fv__copy .cta-button {
    width: 100%;
    justify-content: center;
  }
  .fv__copy .cta-button__primary, .fv__copy .cta-button__sub {
    white-space: nowrap;
  }
  .fv__title {
    margin: 0 0 40px;
    font-size: 32px;
    font-weight: 700;
    color: #0a1464;
    line-height: 1.45;
    text-align: center;
  }
  .fv__title-wo {
    font-size: 24px;
    letter-spacing: 0.72px;
    color: var(--Blue-5, #0A1464);
    font-family: "Noto Sans JP";
    font-weight: 700;
  }
  .fv__title-kouritsu {
    font-size: 27px;
    letter-spacing: 0.81px;
    color: var(--Blue-5, #0A1464);
    font-family: "Noto Sans JP";
    font-weight: 700;
  }
  .fv__lead {
    color: #0a1464;
    text-align: center;
    font-feature-settings: "palt" on;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 1.8px;
    padding-bottom: 32px;
  }
  .fv__sholder {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 8px;
    margin: 0 0 12px;
    font-weight: 700;
    width: 100%;
    color: var(--Blue-5, #0A1464);
    text-align: center;
    font-feature-settings: "palt" on;
    font-family: "Noto Sans JP";
    font-size: 12px !important;
    line-height: 100%;
    letter-spacing: 0.72px;
  }
  .fv__sholder::before, .fv__sholder::after {
    content: "";
    width: 15px;
    height: 15px;
    background-size: contain;
    background-repeat: no-repeat;
  }
  .fv__sholder::before {
    background-image: url("../img/line_left.svg");
    transform: translateY(1px);
  }
  .fv__sholder::after {
    background-image: url("../img/line_right.svg");
    transform: translateY(1px);
    margin-left: -2px;
  }
  .fv__visual {
    flex: 1;
    height: auto;
    overflow: hidden;
    margin: 0 auto;
  }
  .fv__visual img {
    display: block;
    width: 343px;
    height: 181px;
    object-fit: cover;
    object-position: left bottom;
  }
}
@media (min-width: 1921px) {
  .fv > .fv__inner.l-container {
    padding: 93px auto 0px;
  }
}
@media (min-width: 1684px) and (max-width: 1920px) {
  .fv > .fv__inner.l-container {
    padding-left: calc(100% - 1620px);
  }
}
@media (min-width: 1024px) and (max-width: 1684px) {
  .fv > .fv__inner.l-container {
    padding-left: 64px;
  }
  .fv__visual {
    flex: 1;
    height: auto;
    overflow: hidden;
  }
  .fv__visual img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: left bottom;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .fv > .fv__inner.l-container {
    padding: 64px 16px 0;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: auto;
    min-height: auto;
  }
  .fv__copy {
    width: 343px;
    margin: 0 auto -28px;
    align-self: center;
  }
  .fv__title {
    font-size: 32px;
    line-height: 1.3;
    text-align: center;
    margin-bottom: 16px;
  }
  .fv__title-line {
    font-size: 26px;
  }
  .fv__title-chip {
    font-size: 24px;
    padding: 4px 12px 6px;
    letter-spacing: 0.5px;
  }
  .fv__title-row {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
  }
  .fv__title-tail {
    display: flex;
    align-items: baseline;
    white-space: nowrap;
  }
  .fv__title-wo {
    font-size: 22px;
    margin-left: 0;
  }
  .fv__title-kouritsu {
    font-size: 25px;
    margin-left: 2px;
  }
  .fv__lead {
    font-size: 18px;
    text-align: center;
    padding-bottom: 18px;
  }
  .fv__sholder {
    width: 100%;
    font-size: 12px !important;
    justify-content: center;
  }
  .fv__sholder::before, .fv__sholder::after {
    transform: translateY(1px);
  }
  .fv__visual {
    margin: 0 auto;
  }
  .fv__visual img {
    width: 343px;
    height: 181px;
  }
  .fv .cta-button {
    width: 100%;
    justify-content: center;
    font-family: "Noto Sans JP";
    font-weight: 900;
    font-feature-settings: "palt" on;
    color: var(--Blue-5, #0A1464);
    letter-spacing: 1.02px;
    height: 74px;
    padding: 16px 16px 16px 32px;
  }
  .fv .cta-button__lines {
    font-size: 17px;
    line-height: 100%;
  }
  .fv .cta-button__primary {
    font-size: 17px;
    letter-spacing: 0.84px;
  }
  .fv .cta-button__sub {
    font-size: 14px;
  }
  .fv .cta-button__icon {
    height: 40px;
    width: 40px;
  }
  .fv__visual {
    flex: 1;
    height: auto;
    overflow: hidden;
    margin-top: auto;
  }
  .fv__visual img {
    width: calc(100% - 160px);
    height: auto;
    object-fit: cover;
    object-position: left bottom;
    margin: 0px auto;
    transform: translateY(30px);
  }
}
.introduction {
  position: relative;
  padding: 80px 12px 96px;
}
@media (max-width: 768px) {
  .introduction {
    padding-left: 0px;
    padding-right: 0px;
  }
}
.introduction__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.introduction__fukidashi {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: 60px;
  min-width: 60px;
  max-width: none;
  height: 30px;
  object-fit: contain;
  z-index: 2;
  pointer-events: none;
}
.introduction__lead {
  margin: 0;
  text-align: center;
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", meiryo, sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 1.08px;
  color: var(--Mono-10, #000);
}
.introduction__lead p {
  margin: 0;
}
.introduction__lead .pc {
  display: block;
}
.introduction__lead .sp {
  display: none;
}
.introduction__heading-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 12px;
  color: #0a1464;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 30px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%; /* 48px */
  letter-spacing: 1.8px;
}
.introduction__heading-row .pc {
  display: none;
}
.introduction__heading-row .sp {
  display: block;
}
.introduction__emphasis {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  line-height: 160%;
  transform: translateY(-3px);
  padding: 0px 12px;
}
@media (max-width: 768px) {
  .introduction__emphasis {
    padding: 0;
    flex-wrap: nowrap;
    white-space: nowrap;
  }
}
.introduction__emphasis--area {
  display: inline-flex;
  flex-direction: row;
  align-items: baseline;
  flex-wrap: nowrap;
  white-space: nowrap;
}
.introduction__emphasis--after {
  transform: translateY(3px) !important;
}
@media (max-width: 768px) {
  .introduction__emphasis--after {
    padding-right: 0;
  }
}
.introduction__quote {
  display: inline;
  flex-shrink: 0;
  width: auto;
  height: 17px;
  object-fit: contain;
}
@media (max-width: 768px) {
  .introduction__quote {
    height: 14px;
    padding-left: 0;
    padding-right: 0;
  }
}
.introduction__strong {
  color: #0a1464;
  text-align: center;
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", meiryo, sans-serif;
  white-space: nowrap;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: 1.2px;
  color: var(--Blue-5, #0A1464);
}
@media (max-width: 768px) {
  .introduction__strong {
    flex-wrap: nowrap;
    white-space: nowrap;
    padding-left: 0;
    padding-right: 0;
    margin: 0 0;
  }
}

@media (min-width: 768px) {
  .introduction__lead p + p {
    margin-top: 0;
  }
  .introduction__heading-row {
    font-size: 30px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 1.8px;
    color: #0a1464;
    text-align: center;
    font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", meiryo, sans-serif;
    gap: 8px 6px;
  }
  .introduction__heading-row .pc {
    display: block;
  }
  .introduction__heading-row .sp {
    display: none;
  }
  .introduction__emphasis {
    align-items: center;
    font-weight: 500;
  }
  .introduction__strong {
    font-weight: 900;
    color: #0a1464;
    text-align: center;
    font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", meiryo, sans-serif;
    white-space: nowrap;
    font-size: 30px;
    font-style: normal;
    line-height: 160%;
    letter-spacing: 1.2px;
  }
  .introduction__quote {
    height: 14px !important;
    width: auto;
    flex-shrink: 0;
    transform: translateY(-5px);
  }
}
@media (max-width: 768px) {
  .introduction__inner {
    padding: 0 0 !important;
  }
  .introduction__lead .pc {
    display: none;
  }
  .introduction__lead .sp {
    display: block;
  }
  .introduction__lead {
    color: var(--Mono-10, #000);
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 200%;
    letter-spacing: 0.84px;
  }
  .introduction__heading-row .pc {
    display: none;
  }
  .introduction__heading-row .sp {
    display: block;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  .introduction__heading-row {
    text-align: left;
  }
}
@media (max-width: 768px) {
  .introduction__emphasis {
    padding-left: 0px;
  }
  .introduction__quote {
    height: 12px !important;
    width: auto;
    flex-shrink: 0;
  }
  .introduction__quote--open, .introduction__quote--close {
    transform: translateY(-5px);
  }
  .introduction__quote--open {
    margin-right: 0px;
  }
  .introduction__quote--close {
    margin-left: -2px;
    margin-right: 10px;
  }
}
.check-point {
  position: relative;
  background: #f5f5f5;
  padding-bottom: 71px;
  background: linear-gradient(to bottom, #f5f5f5 0px, #f5f5f5 468px, #E2EAF0 468px, #E2EAF0 100%);
}
@media (max-width: 768px) {
  .check-point {
    padding-bottom: 24px !important;
    background: linear-gradient(to bottom, #f5f5f5 0px, #f5f5f5 306px, #E2EAF0 306px, #E2EAF0 100%);
  }
}
.check-point__fukidashi {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 2;
  display: block;
  width: 60px;
  min-width: 60px;
  max-width: none;
  height: 30px;
  object-fit: contain;
  transform: translate(-50%, -50%);
  pointer-events: none;
  margin-top: 15px;
}
.check-point__cta-band {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 538px;
  padding: 0;
  background: #e2eaf0;
  pointer-events: none;
}
.check-point__inner {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 40px);
  padding-top: 80px;
}
@media (max-width: 768px) {
  .check-point__inner {
    margin-top: -68px;
  }
}
.check-point__head {
  --check-title-fs: clamp(22px, 2.3vw, 30px);
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 16px;
  margin-bottom: 56px;
}
.check-point__icon {
  width: 43px;
  height: 45px;
  flex-shrink: 0;
  display: block;
  object-fit: contain;
  margin-top: calc(var(--check-title-fs) * 1.6 / 2 - 22.5px);
}
.check-point__titles {
  flex: 0 1 auto;
  max-width: 922px;
  min-width: 0;
  text-align: center;
}
.check-point__title {
  margin: 0 0 16px;
  font-size: var(--check-title-fs);
  font-weight: 900;
  color: #0a1464;
  letter-spacing: 0.06em;
  line-height: 1.6;
}
.check-point__title br {
  display: none;
}
@media (max-width: 768px) {
  .check-point__title br {
    display: block;
  }
}
.check-point__sub {
  margin: 0;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.06em;
}
.check-point__cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}
.check-point__card {
  position: relative;
  flex: 1 1 280px;
  max-width: 407px;
  min-height: 0;
  padding-top: 48px;
}
.check-point__card-base {
  position: relative;
  background: #fff;
  border-radius: 0 0 10px 10px;
  min-height: 0;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 0;
  padding-top: 20px;
  overflow: visible;
}
.check-point__card-img {
  position: absolute;
  inset: 0;
}
.check-point__card-title {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  box-sizing: border-box;
  min-height: 48px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0f218b;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.06em;
  border-radius: 10px 10px 0 0;
  text-align: center;
  padding: 8px 12px;
}
.check-point__card-title small {
  padding-top: 6px;
  font-size: 20px;
  font-weight: 700;
}
@media (max-width: 768px) {
  .check-point__card-title small {
    font-size: 14px;
  }
}
.check-point__card-title {
  text-align: center;
  justify-content: center;
  line-height: 0.8;
}
.check-point__outro {
  position: relative;
  text-align: center;
  max-width: 900px;
  margin: 196px auto 32px;
  color: #000;
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", meiryo, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.84px;
}
.check-point__outro p {
  margin: 0;
}
.check-point__outro p + p {
  margin-top: 8px;
}
.check-point__outro .sp {
  display: none;
}
.check-point__outro .pc {
  display: block;
}
@media (max-width: 768px) {
  .check-point__outro .sp {
    display: block;
  }
  .check-point__outro .pc {
    display: none;
  }
}
.check-point__cta-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding-bottom: 80px;
}
.check-point__sholder {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 8px;
  margin: 0px;
  font-size: 16px;
  font-weight: 700;
  color: #0a1464;
  letter-spacing: 0.06em;
  width: 473px;
  text-align: center;
  position: relative;
}
.check-point__sholder::before, .check-point__sholder::after {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  background-size: contain;
  background-repeat: no-repeat;
}
.check-point__sholder::before {
  background-image: url("../img/line_left.svg");
  transform: translateY(-3px);
  margin-right: -6px;
}
.check-point__sholder::after {
  background-image: url("../img/line_right.svg");
  transform: translateY(-3px);
  margin-left: 0px;
}

@media (min-width: 768px) {
  .check-point__sub br {
    display: none;
  }
  .check-point__cards {
    margin-bottom: -116px;
    position: relative;
    z-index: 2;
  }
  .check-point__card {
    height: 310px;
    box-sizing: border-box;
  }
  .check-point__card img {
    max-width: none;
    width: 359px;
    height: 294px;
    margin-left: -2px;
    margin-top: -28px;
    transform: scale(1.05);
  }
  .check-point__card.second {
    height: 294px;
  }
  .check-point__card.second img {
    margin-top: 36px;
    transform: scale(1.28);
  }
  .check-point__card-base {
    height: 262px;
    aspect-ratio: unset;
  }
  .check-point__outro {
    position: relative;
    z-index: 1;
    margin-bottom: 32px;
    padding-top: 76px;
    color: #000;
    font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", meiryo, sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 2;
    letter-spacing: 1.08px;
    text-align: center;
  }
  .check-point__outro p + p {
    margin-top: 0;
  }
  .check-point__cta-wrap {
    padding-bottom: 0;
  }
}
@media (max-width: 768px) {
  .check-point {
    padding-bottom: 0px;
  }
  .check-point__sub br {
    display: block;
  }
  .check-point__head {
    flex-direction: column;
  }
  .check-point__icon {
    margin-bottom: -40px;
    width: 767px;
    padding-right: 252px;
  }
  .check-point__titles {
    width: 100%;
    justify-content: center;
    margin: auto;
  }
  .check-point_title {
    min-width: 767px;
    justify-content: center;
    margin: auto;
  }
  .check-point__card img {
    max-width: none;
    width: 359px;
    height: 294px;
    margin-left: -8px;
    margin-top: -30px;
    transform: scaleY(1.05);
  }
  .check-point__card.second {
    height: 294px;
  }
  .check-point__card.second img {
    margin-top: 28px;
    transform: scale(1.23);
  }
  .check-point__card.third {
    margin-top: 120px;
  }
  .check-point__sholder::before {
    background-image: url("../img/line_left.svg");
    transform: translateY(0px);
    margin-right: -6px;
  }
  .check-point__sholder::after {
    background-image: url("../img/line_right.svg");
    transform: translateY(0px);
    margin-left: -6px;
  }
}
@media (min-width: 768px) and (max-width: 1200px) {
  .check-point__card.third {
    margin-top: 138px;
    margin-bottom: -120px;
  }
}
.problem {
  padding: 80px 0 96px;
}
.problem__inner {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 40px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
}
.problem__title-wrap {
  position: relative;
  text-align: center;
  max-width: 960px;
  padding-top: 8px;
}
.problem__title {
  margin: 0;
  font-size: clamp(22px, 2.3vw, 30px);
  font-weight: 900;
  color: #0a1464;
  line-height: 160%;
  letter-spacing: 1.38px;
}
.problem__title-text--sp {
  display: none;
}
.problem__title-text--pc {
  display: block;
  white-space: nowrap;
}
.problem__title-kozo {
  display: inline;
}
.problem__title-dot-char {
  position: relative;
  display: inline;
}
.problem__title-dot-char::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -12px;
  width: 8px;
  height: 8px;
  transform: translateX(-50%);
  background: radial-gradient(circle, #5bbdce 0 4px, transparent 4.2px);
  background-repeat: no-repeat;
  pointer-events: none;
}
.problem__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 0;
  width: 100%;
}
.problem__col {
  flex: 1 1 260px;
  max-width: 376px;
  padding: 0 12px 24px;
  text-align: center;
  position: relative;
}
.problem__col + .problem__col::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0px;
  bottom: 48px;
  width: 2px;
  height: 292px;
  background-color: #eee;
  border-radius: 4px;
}
.problem__pill {
  display: flex;
  box-sizing: border-box;
  width: 256px;
  max-width: 100%;
  margin: 0 auto 16px;
  padding: 8px 16px 12px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 100px;
  background: #4a89bf;
  color: #fff;
  text-align: center;
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", meiryo, sans-serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 1.32px;
  font-feature-settings: "palt" 1;
}
.problem__pill-nowrap {
  white-space: nowrap;
}
.problem__illust {
  position: relative;
  margin: 0 auto 16px;
  max-width: 256px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.problem__illust-img {
  display: block;
  width: 100%;
  max-width: 256px;
  aspect-ratio: 256/160;
  margin: 0 auto;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.problem__illust-img--problem1 {
  background-image: url("../img/img_structure01.svg");
}
.problem__illust-img--problem2 {
  background-image: url("../img/img_structure02.svg");
}
.problem__illust-img--problem3 {
  background-image: url("../img/img_structure03.svg");
}
.problem__body {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  color: #000;
}
.problem__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
@media (min-width: 768px) {
  .problem__cta {
    width: 500px;
  }
  .problem__cta .cta-button {
    width: 500px;
  }
  .problem__cta .cta-button__lines {
    margin: 0 auto;
  }
}
.problem__sholder {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 8px;
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: #0a1464;
  letter-spacing: 0.06em;
  width: 473px;
  text-align: center;
  position: relative;
}
.problem__sholder::before, .problem__sholder::after {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  background-size: contain;
  background-repeat: no-repeat;
  line-height: 1;
}
.problem__sholder::before {
  background-image: url("../img/line_left.svg");
  transform: translateY(-4px);
  margin-right: -4px;
}
.problem__sholder::after {
  background-image: url("../img/line_right.svg");
  transform: translateY(-4px);
  margin-left: 4px;
}

@media (max-width: 954px) {
  .problem__title-text--pc {
    display: none;
  }
  .problem__title-text--sp {
    display: block;
  }
  .problem__title {
    font-size: 23px;
    letter-spacing: 1.38px;
    line-height: 1.4;
  }
  .problem__title-line {
    display: block;
    white-space: nowrap;
  }
  .problem__title-line--accent {
    position: relative;
    display: inline-block;
    margin-top: 10px;
  }
  .problem__title-dot-char::before {
    top: -10px;
  }
}
@media (max-width: 900px) {
  .problem {
    padding: 60px 0 72px;
  }
  .problem__col {
    padding-bottom: 54px;
  }
  .problem__col:nth-child(3) {
    padding-bottom: 40px;
  }
  .problem__col + .problem__col::before {
    display: none;
  }
  .problem__sholder {
    margin-top: -64px;
    color: #0a1464;
    text-align: center;
    font-feature-settings: "palt" on;
    font-family: "Noto Sans JP";
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%; /* 12px */
    letter-spacing: 0.72px;
  }
  .problem__sholder::before, .problem__sholder::after {
    content: "";
    width: 15px;
    height: 15px;
    background-size: contain;
    background-repeat: no-repeat;
    line-height: 1;
  }
  .problem__sholder::before {
    background-image: url("../img/line_left.svg");
    transform: translateY(0px);
  }
  .problem__sholder::after {
    background-image: url("../img/line_right.svg");
    transform: translateY(0px);
  }
}
.turning-point {
  position: relative;
  padding: 80px 16px;
  overflow: hidden;
  color: #fff;
}
.turning-point__bg {
  position: absolute;
  inset: 0;
  mix-blend-mode: multiply;
  pointer-events: none;
  background-image: url("../img/solution_bg.jpeg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.turning-point__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  max-width: 800px;
  text-align: center;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .turning-point__inner {
    padding: 0 0 !important;
  }
}
.turning-point__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 12px;
  text-align: center;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  font-family: "Noto Sans JP";
  font-size: 30px;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: 1.8px;
}
@media (max-width: 768px) {
  .turning-point__row {
    font-size: 20px;
    letter-spacing: 1.2px;
  }
}
.turning-point__row-text {
  display: inline-flex;
  align-items: center;
}
.turning-point__row-text br {
  display: none;
}
@media (max-width: 768px) {
  .turning-point__row-text br {
    display: inline;
  }
}
.turning-point__row-text-emphasis {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}
.turning-point__row-emphasis {
  font-weight: 700;
  padding: 0 4px;
}
.turning-point__quote {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
@media (max-width: 768px) {
  .turning-point__quote-end {
    transform: translateY(6px);
  }
}
.turning-point__quote-mark {
  color: #5bbdce;
  font-weight: 900;
}
.turning-point__strong {
  font-weight: 900;
}
.turning-point__headline {
  margin: 0;
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 900;
  line-height: 1.6;
}
.turning-point__headline-keep {
  color: var(--Mono-1, #FFF);
  text-align: center;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  font-family: "Noto Sans JP";
  font-size: 40px;
  font-style: normal;
  font-weight: 900;
  line-height: 160%; /* 64px */
  letter-spacing: 2.4px;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .turning-point__headline-keep {
    color: var(--Mono-1, #FFF);
    text-align: center;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
    font-family: "Noto Sans JP";
    font-size: 25px;
    font-style: normal;
    font-weight: 900;
    line-height: 140%; /* 35px */
    letter-spacing: 1.5px;
  }
}

.solution {
  padding: 80px 0 96px;
  background: #fff;
  overflow: visible;
  margin: 0 auto;
}
.solution__inner {
  overflow: visible;
}
.solution__intro {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 48px;
  position: relative;
}
.solution__lead {
  margin: 0 0 8px;
  font-size: 24px;
  font-weight: 500;
  color: #0a1464;
  letter-spacing: 0.06em;
}
.solution__lead br {
  display: none;
}
@media (max-width: 768px) {
  .solution__lead {
    color: var(--Blue-5, #0A1464);
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 160%; /* 25.6px */
    letter-spacing: 0.96px;
  }
  .solution__lead br {
    display: block;
  }
}
.solution__title {
  margin: 0;
  color: #0a1464;
  line-height: 1.6;
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", meiryo, sans-serif;
  text-align: center;
  font-size: 30px;
  font-style: normal;
  font-weight: 900;
  line-height: 160%; /* 48px */
  letter-spacing: 1.8px;
}
.solution__title-mark {
  display: inline;
  background: linear-gradient(#fc0) -3px calc(100% - 5px)/100% 8px no-repeat;
}
.solution__title-mark br {
  display: none;
}
.solution__title-mark-after {
  margin-left: -8px;
}
@media (max-width: 768px) {
  .solution__title-mark {
    background: linear-gradient(#fc0) -3px calc(100% - 1px)/100% 8px no-repeat;
  }
  .solution__title-mark br {
    display: inline;
  }
  .solution__title-mark-after {
    margin-left: -4px;
  }
}
.solution__columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 56px;
  overflow: visible;
}
.solution-card {
  position: relative;
  z-index: 1;
  max-width: 376px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow: visible;
}
@media (max-width: 768px) {
  .solution-card:nth-of-type(1) {
    margin-top: 0px;
  }
  .solution-card:nth-of-type(2), .solution-card:nth-of-type(3) {
    margin-top: 24px;
  }
}
.solution-card__label {
  position: absolute;
  top: 464px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  background-color: #0f218b;
  border-radius: 50px;
  padding: 6px 24px;
  width: fit-content;
  white-space: nowrap;
  display: inline-flex;
  padding: 6px 16px 8px 16px;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
@media (max-width: 768px) {
  .solution-card__label {
    top: 450px;
  }
}
.solution-card__label_text {
  color: #fff;
  text-align: center;
  font-feature-settings: "palt" on;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 14px */
  letter-spacing: 0.84px;
}
.solution-card__label_text.long {
  padding: 0 16px;
}
.solution-card__label_text .small {
  font-size: 12px;
}
.solution-card__label_text {
  line-height: 1;
}
.solution-card__problem {
  position: relative;
  z-index: 4;
  margin: 0;
  min-height: 84px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  background: #0f218b;
  color: #fff;
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", meiryo, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: 0.96px;
  text-align: center;
  border-radius: 10px;
}
.solution-card__problem p {
  margin: 0;
  font: inherit;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .solution-card__problem {
    width: 100%;
    margin: 0;
    margin-bottom: 6px;
  }
}
.solution-card__arrow {
  position: relative;
  z-index: 2;
  width: 36px;
  height: 48px;
  margin: -10px auto 60px;
  flex-shrink: 0;
  background: url("../img/Arrow.svg") no-repeat center/contain;
}
@media (max-width: 768px) {
  .solution-card__arrow {
    width: 36px !important;
    height: 48px !important;
    margin: 6px auto 12px;
  }
}
.solution-card__panel {
  position: relative;
  z-index: 1;
  background: #edf6ff;
  width: 376px;
  height: 287px;
  overflow: visible;
  padding: 0;
  border-radius: 0px 0px 10px 10px;
}
.solution-card__illust {
  padding-top: 0px;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media (max-width: 768px) {
  .solution-card__panel, .solution-card__illust {
    padding: 0;
    width: 343px;
    height: 287px;
    margin: auto;
    border-radius: 10px;
  }
  .solution-card__illust {
    padding-top: 24px;
  }
}
.solution-card__fuki {
  position: absolute;
  top: 0;
  left: 0px;
  width: 100%;
  margin: 0 -10px;
  z-index: 5;
  text-align: center;
  transform: scale(1.023);
}
@media (max-width: 768px) {
  .solution-card__fuki {
    left: 50%;
    width: 107.5% !important;
    margin: 0 auto;
  }
}
.solution-card__fuki-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 396px;
  min-height: 143px;
  padding: 22px 41px 24.86px;
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  .solution-card__fuki-inner {
    width: 373px;
    gap: 0px;
    padding: 0px;
    margin-top: 6px;
  }
}
.solution-card__fuki-inner > *:not(.solution-card__fuki-bg) {
  position: relative;
  z-index: 1;
}
.solution-card__fuki-bg {
  position: absolute;
  left: 50%;
  top: 50%;
  width: calc(100% + 32px);
  height: calc(100% + 32px);
  transform: translate(-50%, -50%);
  z-index: 0;
  pointer-events: none;
}
@media (max-width: 768px) {
  .solution-card__fuki-bg {
    margin-top: 6px;
  }
}
.solution-card__service, .solution-card__copy {
  width: 100%;
  max-width: 294px;
  color: var(--Blue-5, #0A1464);
  font-feature-settings: "palt" on;
  font-family: "Noto Sans JP";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 1.8px;
  margin-top: -3px;
}
.solution-card__service {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 4px;
  line-height: 1.35;
}
.solution-card__service a {
  font-size: 20px;
  font-weight: 900;
  color: #0058a3;
  text-decoration: underline;
  text-underline-offset: 4px;
  letter-spacing: 1.2px;
}
.solution-card__service-chev {
  margin-top: -4px;
  height: 14px;
  width: 14px;
}
@media (max-width: 768px) {
  .solution-card__service-chev {
    margin-top: 2px;
    height: 14px !important;
    width: 14px !important;
  }
}
.solution-card__service-suffix {
  font-size: 18px;
  font-weight: 500;
  color: #0a1464;
  letter-spacing: 1.08px;
}
@media (max-width: 768px) {
  .solution-card__service-suffix {
    margin-top: 4px;
  }
}
.solution-card__copy {
  font-size: 20px;
  font-weight: 500;
  color: #0a1464;
  letter-spacing: 2px;
  line-height: 1.4;
}
.solution-card__copy p {
  margin: 0;
  word-break: keep-all;
}
.solution-card__copy strong {
  font-weight: 700;
}
@media (max-width: 768px) {
  .solution-card__copy {
    margin-top: 12px;
  }
}
.solution__message {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto 40px;
  padding-inline: 26px;
}
.solution__message p {
  margin: 0;
  font-size: clamp(22px, 2.4vw, 34px);
  font-weight: 900;
  color: #0a1464;
  letter-spacing: 0.06em;
  line-height: 1.6;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .solution__message {
    margin-top: 32px;
    margin-bottom: 72px;
  }
}
.solution__message-copy {
  flex: 1 1 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.solution__message-copy br {
  display: none;
}
@media (max-width: 768px) {
  .solution__message-copy {
    justify-content: center;
    text-align: center;
    margin-bottom: 36px;
  }
  .solution__message-copy br {
    display: block;
  }
  .solution__message-copy {
    align-items: center;
    margin: auto -16px;
  }
}
.solution__bracket-img {
  position: absolute;
  top: 50%;
  width: 26px;
  height: 130px;
  transform: translateY(-50%);
  pointer-events: none;
}
.solution__bracket-img:first-child {
  left: 0;
}
.solution__bracket-img:last-child {
  right: 0;
}
.solution__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
@media (max-width: 768px) {
  .solution__cta .cta-button__lines {
    padding: 8px 0px;
  }
}
.solution__cta .cta-button__primary {
  font-size: 24px;
}
@media (max-width: 768px) {
  .solution__cta .cta-button__primary {
    color: var(--Blue-5, #0A1464);
    text-align: center;
    font-feature-settings: "palt" on;
    font-family: "Noto Sans JP";
    font-size: 17px;
    font-style: normal;
    font-weight: 900;
    line-height: 100%; /* 17px */
    letter-spacing: 1.02px;
  }
}
.solution__cta .cta-button__icon {
  height: 48px;
  width: 48px;
}
@media (max-width: 768px) {
  .solution__cta .cta-button__icon {
    height: 36px;
    width: 36px;
  }
}
.solution__sholder {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 8px;
  margin: 0px;
  font-size: 16px;
  font-weight: 700;
  color: #0a1464;
  letter-spacing: 0.06em;
  width: 473px;
  text-align: center;
  position: relative;
}
.solution__sholder::before, .solution__sholder::after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background-size: contain;
  background-repeat: no-repeat;
}
.solution__sholder::before {
  background-image: url("../img/line_left.svg");
  transform: translateY(-2px);
  margin-right: -12px;
}
.solution__sholder::after {
  background-image: url("../img/line_right.svg");
  transform: translateY(-2px);
  margin-left: -4px;
}
@media (max-width: 768px) {
  .solution__sholder::before, .solution__sholder::after {
    transform: translateY(0px);
  }
}

.service {
  position: relative;
  padding: 80px 0 96px;
}
.service__bg {
  position: absolute;
  inset: 0;
  background-color: #e2eaf0;
  background-image: url("../img/image_302.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.service__inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}
.service__title {
  color: var(--Blue-5, #0A1464);
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 30px;
  font-style: normal;
  font-weight: 900;
  line-height: 160%; /* 48px */
  letter-spacing: 1.8px;
  margin-top: 0px;
  margin-bottom: 56px;
}
.service__title br {
  display: none;
}
@media (max-width: 768px) {
  .service__title {
    color: var(--Blue-5, #0A1464);
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 20px;
    font-style: normal;
    font-weight: 900;
    line-height: 160%; /* 32px */
    letter-spacing: 1.2px;
    margin: 0 auto;
  }
  .service__title br {
    display: block;
  }
}

.service-card-lg {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(280px, 1.1fr);
  gap: 16px;
  align-items: stretch;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 56px 48px;
  margin-bottom: 40px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .service-card-lg {
    width: 100%;
    padding: 20px 20px 30px !important;
    margin: 0 auto;
  }
}
.service-card-lg--marketplace::before, .service-card-lg--finder::before {
  content: "";
  position: absolute;
  top: 0px;
  bottom: 0;
  right: -60px;
  width: min(820px, 82%);
  pointer-events: none;
  border-radius: 0 10px 10px 0;
  background-image: url("../img/bg_service_pc.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right center;
}
@media (max-width: 768px) {
  .service-card-lg--marketplace::before, .service-card-lg--finder::before {
    right: 0;
    width: 100%;
    height: auto;
    margin: 0 auto;
    background-image: url("../img/bg_service_sp.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    transform: none;
  }
}
.service-card-lg .service-card-lg__main {
  width: 556px;
  color: var(--Blue-5, #0A1464);
  font-family: "Noto Sans JP";
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%; /* 28.8px */
  letter-spacing: 1.08px;
}
@media (max-width: 768px) {
  .service-card-lg .service-card-lg__main {
    width: 100%;
  }
}

@media (max-width: 960px) {
  .service-card-lg {
    grid-template-columns: 1fr;
    padding: 40px 28px;
  }
}
.service-card-lg__main {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  margin: 0 0;
  padding: 0 0;
}
.service-card-lg__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.service-card-lg__badge {
  padding: 4px 12px 6px;
  border-radius: 6px;
  background: #0a1464;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
}
.service-card-lg__name {
  color: var(--Blue-5, #0A1464);
  font-family: "Noto Sans JP";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 20px */
  letter-spacing: 1.2px;
}
@media (max-width: 768px) {
  .service-card-lg__name {
    margin-bottom: -52px;
    margin-left: -168px;
    width: 282px;
  }
}
@media (max-width: 768px) {
  .service-card-lg--finder .service-card-lg__name {
    margin-left: -134px;
  }
}
.service-card-lg__logo {
  margin: 0;
  line-height: 0;
}
.service-card-lg__logo-img.marketplace {
  display: flex;
  width: 413px;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
@media (max-width: 768px) {
  .service-card-lg__logo-img.marketplace {
    margin-top: 12px;
    width: 303px;
    height: 26px;
  }
}
.service-card-lg__logo-img.finder {
  display: flex;
  width: 309px;
  height: 36px;
  padding-bottom: 0.189px;
  justify-content: center;
  align-items: center;
  aspect-ratio: 103/12;
}
@media (max-width: 768px) {
  .service-card-lg__logo-img.finder {
    width: 223px;
    height: 26px;
    margin-top: 12px;
  }
}
.service-card-lg__desc {
  color: var(--Blue-5, #0A1464);
  font-family: "Noto Sans JP";
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%; /* 28.8px */
  letter-spacing: 1.08px;
}
.service-card-lg__desc br.pc {
  display: block;
}
.service-card-lg__desc br.sp {
  display: none;
}
.service-card-lg__desc .br {
  display: block;
}
@media (max-width: 768px) {
  .service-card-lg__desc {
    color: var(--Blue-5, #0A1464);
    font-family: "Noto Sans JP";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 160%; /* 25.6px */
    letter-spacing: 0.8px;
    margin-top: 0px;
  }
  .service-card-lg__desc br.pc {
    display: none;
  }
  .service-card-lg__desc br.sp {
    display: block;
  }
}
.service-card-lg__list {
  margin-top: 6px;
  margin-left: -38px;
}
.service-card-lg__list li {
  color: var(--Blue-5, #0A1464);
  display: flex;
  align-items: flex-start;
  font-size: 16px;
  font-weight: 700;
  color: #0a1464;
  line-height: 100%; /* 16px */
  letter-spacing: 0.96px;
  text-indent: 8px;
}
.service-card-lg__list li:nth-child(1) {
  padding-bottom: 16px;
}
.service-card-lg__list li::before {
  content: "";
  width: 12px;
  height: 12px;
  margin-top: 4px;
  background-image: url("../img/ico_dot.svg");
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .service-card-lg__list li::before {
    margin-top: 0px;
  }
}
@media (max-width: 768px) {
  .service-card-lg__list {
    margin-top: -20px;
    margin-bottom: 0px;
  }
}
.service-card-lg__tags {
  margin-top: 25px;
  margin-bottom: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
@media (max-width: 768px) {
  .service-card-lg__tags {
    margin-top: 0px;
    margin-bottom: 0px;
  }
}
.service-card-lg__tag {
  padding: 6px 10px 8px;
  border-radius: 2px;
  background: #e1f0ff;
  font-size: 14px;
  font-weight: 700;
  color: #0a1464;
  letter-spacing: 0.06em;
}
.service-card-lg__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: 200px;
  max-width: 100%;
  padding: 16px 16px 16px 24px;
  box-sizing: border-box;
  border-radius: 120px;
  border: 2px solid #5bbdce;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  font-family: inherit;
  box-shadow: 0 2px 6px 1px rgba(0, 0, 0, 0.2);
  text-align: center;
  justify-content: center;
  align-items: center;
}
.service-card-lg__btn-text {
  color: var(--Blue-5, #0A1464);
  text-align: center;
  font-feature-settings: "palt" on;
  font-family: "Noto Sans JP";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 18px */
  letter-spacing: 1.08px;
  width: 134px;
}
@media (max-width: 768px) {
  .service-card-lg__btn-text {
    width: 100%;
    margin: 0 auto;
  }
}
.service-card-lg__btn-icon {
  position: relative;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 3px;
  margin-left: auto;
  background-image: url("../img/ico_arrow.svg");
}
@media (max-width: 768px) {
  .service-card-lg__btn-icon {
    margin-top: 1px;
  }
}
@media (max-width: 768px) {
  .service-card-lg__btn {
    margin: 0 auto;
    padding: 16px;
    width: 100%;
  }
}
.service-card-lg__visual {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .service-card-lg__visual {
    margin: 0 auto;
    width: 100%;
  }
}
.service-card-lg--finder .service-card-lg__visual {
  height: auto;
  padding: 0;
  align-items: center;
}
.service-card-lg__mock {
  width: 100%;
  margin-inline: auto;
  border-radius: 6px;
  overflow: visible;
}
.service-card-lg__mock-img {
  display: block;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  z-index: 10;
}
.service-card-lg__mock-img--process {
  aspect-ratio: 563/310;
  width: 563px;
  height: auto;
  background-image: url("../img/img_meviymarketplace.svg");
}
@media (max-width: 768px) {
  .service-card-lg__mock-img--process {
    aspect-ratio: none;
    max-width: none;
    width: 100%;
    margin: 0px auto;
  }
}
.service-card-lg__mock-img--finder {
  aspect-ratio: 449/276;
  background-image: url("../img/img_meviyfinder.svg");
  height: auto;
  width: 100%;
  margin-left: 42px;
}
@media (max-width: 768px) {
  .service-card-lg__mock-img--finder {
    aspect-ratio: none;
    max-width: none;
    width: 100%;
    margin: 0px auto;
  }
}

.cta-section {
  padding: 80px 16px 0px;
}
.cta-section__banner {
  position: relative;
  max-width: 1095px;
  margin: 0 auto 56px;
  padding: 12px 24px 16px;
  border-radius: 4px;
  overflow: visible;
  text-align: center;
  background: linear-gradient(180deg, #0a1464 0%, #5bbdce 139.84%);
}
.cta-section__banner h2 {
  position: relative;
  margin: 0;
  font-family: "$font-sans";
  font-size: 36px;
  font-style: normal;
  font-weight: 900;
  color: var(--Mono-1, #fff);
  text-align: center;
  letter-spacing: 2.16px;
  line-height: 1.6;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  white-space: nowrap;
}
.cta-section__inner {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 40px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.cta-section__sholder {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 8px;
  margin: 0 0px 12px;
  color: #0a1464;
  width: 1018px;
  position: relative;
  color: var(--Blue-5, #0A1464);
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 24px */
  letter-spacing: 1.44px;
}
.cta-section__sholder::before, .cta-section__sholder::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  background-size: contain;
  background-repeat: no-repeat;
  line-height: 1;
}
.cta-section__sholder::before {
  background-image: url("../img/line_left.svg");
  transform: translateY(2px);
  margin-right: -10px;
}
.cta-section__sholder::after {
  background-image: url("../img/line_right.svg");
  transform: translateY(2px);
  margin-left: 0px;
  margin-right: -10px;
}
.cta-section__sholder-text {
  min-width: 0;
}
@media (min-width: 1021px) {
  .cta-section .cta-section__banner-br {
    display: none;
  }
}
@media (min-width: 916px) {
  .cta-section .cta-section__sholder-br {
    display: none;
  }
  .cta-section .cta-section__sholder-text {
    white-space: nowrap;
  }
}
.cta-section__area {
  width: 100%;
  max-width: 1200px;
  display: flex;
  justify-content: center;
  padding: 0 16px;
}

@media (max-width: 768px) {
  .cta-section__sholder {
    color: var(--Blue-5, #0A1464);
    text-align: center;
    font-feature-settings: "palt" on;
    font-family: "Noto Sans JP";
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%; /* 14.4px */
    letter-spacing: 0.72px;
  }
  .cta-section__sholder::before {
    background-image: url("../img/line_left.svg");
    transform: translateY(0px);
    margin-top: 12px;
    margin-right: 0px;
  }
  .cta-section__sholder::after {
    background-image: url("../img/line_right.svg");
    transform: translateY(0px);
    margin-top: 12px;
    margin-left: -4px;
  }
  .cta-section__inner {
    gap: 0px !important;
  }
}
.footer {
  background: #000;
  color: #fff;
  padding-inline: 16px;
}
.footer__inquiry {
  box-sizing: border-box;
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: flex-start;
  gap: 0;
  padding: 40px 24px;
}
.footer__col {
  flex: 0 1 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__col--support {
  flex: 0 1 386px;
  align-items: center;
  text-align: center;
}
.footer__col--privacy, .footer__col--related {
  flex: 1 1 0;
  min-width: 0;
}
.footer__col--misumi-logo {
  flex: 1 1 0;
  min-width: 0;
  justify-content: flex-end;
  align-items: flex-end;
}
.footer__links {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  flex: 2 1 0;
  min-width: 0;
}
.footer__heading {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
}
.footer__phone-wrap {
  width: 100%;
  max-width: 386px;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  padding: 6px 22px 8px;
}
.footer__phone {
  margin: 0;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1;
}
.footer__hours {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}
.footer__divider {
  flex-shrink: 0;
  width: 1px;
  align-self: stretch;
  min-height: 118px;
  margin: 0 32px;
  background: rgba(255, 255, 255, 0.35);
}
.footer__link {
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
}
.footer__list {
  margin: 0;
  padding-left: 18px;
  font-size: 12px;
  list-style: disc;
}
.footer__list li {
  margin-bottom: 8px;
}
.footer__logo {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  line-height: 0;
  margin-top: auto;
}
.footer__logo-img {
  display: block;
  height: 19px;
  width: auto;
  max-width: 100%;
}
.footer__copy {
  box-sizing: border-box;
  max-width: 1200px;
  margin-inline: auto;
  border-top: 1px solid #8f8f8f;
  padding: 16px 24px;
  text-align: center;
}
.footer__copy p {
  margin: 0;
  color: var(--Mono-1, #fff);
  text-align: center;
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", meiryo, sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: 0.72px;
  white-space: nowrap;
}

@media (max-width: 800px) {
  .footer__divider {
    display: none;
  }
}
.sticky-cta {
  position: fixed;
  right: 0;
  bottom: 16px;
  z-index: 50;
  width: 320px;
  max-width: min(320px, 100vw);
  box-sizing: border-box;
  overflow: visible;
  display: flow-root;
}
.sticky-cta[hidden] {
  display: none;
}
.sticky-cta__surface {
  position: relative;
  z-index: 2;
  box-sizing: border-box;
  width: 100%;
  margin-top: -120px;
  padding-top: 0;
  overflow-x: visible;
  overflow-y: visible;
  border-radius: 10px 0 0 10px;
  box-shadow: 0 3px 12px 0 rgba(0, 0, 0, 0.2);
  isolation: isolate;
}
.sticky-cta__close {
  position: absolute;
  top: -24px;
  right: 10px;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 32px;
  height: 28px;
  padding: 0;
  border: none;
  border-radius: 4px;
  background: #0f218b;
  cursor: pointer;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.18);
  font-size: 0;
  line-height: 0;
  pointer-events: auto;
}
.sticky-cta__close-img {
  display: block;
  width: 22px;
  height: 22px;
  object-fit: contain;
  pointer-events: none;
}
.sticky-cta__link {
  position: relative;
  z-index: 6;
  display: flex;
  flex-direction: column;
  width: 320px;
  max-width: 320px;
  height: 150px;
  box-sizing: border-box;
  overflow: visible;
  border-radius: 0;
  text-decoration: none;
  color: inherit;
  font-family: inherit;
  pointer-events: none;
  transition: opacity 0.3s ease, filter 0.3s ease;
}
.sticky-cta__yellow {
  display: block;
  position: relative;
  flex: 0 0 92px;
  flex-shrink: 0;
  box-sizing: border-box;
  height: 92px;
  min-height: 92px;
  max-height: 92px;
  padding: 17px 0 0 16px;
  overflow: visible;
  overscroll-behavior: none;
  border-radius: 10px 0 0 0;
  background: #fc0;
  pointer-events: auto;
}
.sticky-cta__lead {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  width: 173px;
  max-width: 173px;
}
.sticky-cta__title-line {
  display: block;
  margin: 0;
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", meiryo, sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 900;
  color: #0a1464;
  line-height: 120%;
  letter-spacing: 1.44px;
  font-feature-settings: "palt" 1;
  white-space: nowrap;
}
.sticky-cta__figure-clip {
  position: absolute;
  left: 0;
  right: -56px;
  top: -120px;
  bottom: 58px;
  overflow: hidden;
  clip-path: inset(-240px -70px 0 0);
  border-top-left-radius: 0;
  z-index: 4;
  pointer-events: none;
}
@media (max-width: 768px) {
  .sticky-cta__figure-clip {
    bottom: 48px;
  }
}
.sticky-cta__figure {
  position: absolute;
  top: 112px;
  left: auto;
  right: 55px;
  z-index: 1;
  box-sizing: border-box;
  width: 140px;
  height: 100px;
  margin: 0;
  line-height: 0;
  overflow: visible;
  pointer-events: none;
}
.sticky-cta__figure.pc {
  display: block;
}
.sticky-cta__figure.sp {
  display: none;
}
@media (max-width: 767px) {
  .sticky-cta__figure.pc {
    display: none;
  }
  .sticky-cta__figure.sp {
    display: block;
    top: 106px;
    width: 140px;
    height: auto;
  }
}
.sticky-cta__figure-img {
  display: block;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  transform: none;
  pointer-events: none;
}
.sticky-cta__dl {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
  flex: 0 0 58px;
  flex-shrink: 0;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  box-sizing: border-box;
  height: 58px;
  min-height: 58px;
  max-height: 58px;
  padding: 13px 16px;
  border-radius: 0 0 0 10px;
  background: linear-gradient(90deg, #0a1464 0%, #5bbdce 100%);
  pointer-events: auto;
}
.sticky-cta__dl-text {
  flex: 1;
  min-width: 0;
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", meiryo, sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  color: #fff;
  line-height: 100%;
  letter-spacing: 0.72px;
  font-feature-settings: "palt" 1;
  white-space: nowrap;
}
.sticky-cta__dl-badge {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  margin-top: -10px;
  width: 32px;
  height: 32px;
  animation: arrowBounce 1.5s ease-in-out infinite;
  z-index: 10;
}
.sticky-cta__dl-badge svg {
  display: block;
  width: 32px;
  height: 32px;
}
@keyframes arrowBounce {
  0% {
    transform: translateY(2px);
    opacity: 1;
  }
  50% {
    transform: translateY(10px);
    opacity: 1;
  }
  100% {
    transform: translateY(2px);
  }
}
.sticky-cta__dl-base {
  margin-top: -20px;
}
.sticky-cta__dl-base svg {
  display: block;
  width: 32px;
  height: 32px;
}

@media (max-width: 767px) {
  .sticky-cta {
    left: max(16px, env(safe-area-inset-left, 0px));
    right: max(16px, env(safe-area-inset-right, 0px));
    width: auto;
    max-width: 343px;
    margin-inline: auto;
    bottom: 8px;
  }
  .sticky-cta__surface {
    margin-top: 26px;
    padding-top: 0;
    overflow-x: visible;
    overflow-y: visible;
    border-radius: 10px;
    isolation: auto;
  }
  .sticky-cta__close {
    top: -28px;
    right: 0;
    width: 32px;
    height: 40px;
    border-radius: 6px 6px 0 0;
    align-items: flex-start;
    justify-content: center;
    padding-top: 2px;
    z-index: 1;
  }
  .sticky-cta__close-img {
    width: 24px;
    height: 24px;
  }
  .sticky-cta__link {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    height: 120px;
    z-index: 2;
  }
  .sticky-cta__yellow {
    display: block;
    position: relative;
    flex: 0 0 72px;
    height: 72px;
    min-height: 72px;
    max-height: 72px;
    min-width: 0;
    padding: 10px 0 0 24px;
    overflow: visible;
    overscroll-behavior: none;
    border-radius: 10px 10px 0 0;
    clip-path: inset(-96px 0 0 0 round 10px 10px 0 0);
    z-index: 2;
  }
  .sticky-cta__lead {
    width: 151px;
    max-width: 151px;
    min-width: 0;
  }
  .sticky-cta__title-line {
    font-size: 21px;
    line-height: 120%;
    letter-spacing: 1.26px;
    white-space: nowrap;
  }
  .sticky-cta__dl {
    position: relative;
    z-index: 1;
    flex: 0 0 48px;
    height: 48px;
    min-height: 48px;
    max-height: 48px;
    align-items: center;
    justify-content: space-between;
    padding: 8px 24px;
    gap: 0;
    border-radius: 0 0 10px 10px;
  }
  .sticky-cta__dl-text {
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0.72px;
    white-space: nowrap;
  }
  .sticky-cta__dl-badge, .sticky-cta__dl-badge svg {
    width: 32px;
    height: 32px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .sticky-cta:hover {
    opacity: 0.8;
    filter: brightness(0.96);
  }
}
button,
a.cta-button,
.header-supply__btn,
.header-supply__burger,
.solution-card__service-linktext,
.service-card-lg__btn,
.sticky-cta {
  transition: opacity 1s ease;
}

a {
  transition: opacity 1s ease;
}

@media (hover: hover) and (pointer: fine) {
  button:hover,
  a.cta-button:hover,
  .header-supply__btn:hover,
  .header-supply__burger:hover,
  .solution-card__service-linktext:hover,
  .service-card-lg__btn:hover,
  a:hover:not(.sticky-cta__link) {
    opacity: 0.5;
  }
}
@media (max-width: 768px) {
  .cta-button {
    width: 343px;
    max-width: 100%;
    justify-content: center;
    padding: 16px 16px 16px 32px;
    border-radius: 120px;
  }
  .cta-button__icon {
    width: 40px;
    height: 40px;
  }
  .cta-button__primary {
    font-size: 17px;
    letter-spacing: 1.02px;
    white-space: nowrap;
  }
  .cta-button__sub {
    font-size: 14px;
    letter-spacing: 0.84px;
    white-space: nowrap;
  }
  .check-point .cta-button__primary {
    font-size: 14px;
    letter-spacing: 0.84px;
  }
  .container,
  .fv__inner,
  .introduction__inner,
  .check-point__inner,
  .problem__inner,
  .solution__inner,
  .service__inner,
  .turning-point__inner,
  .cta-section__inner {
    padding-inline: 16px;
    max-width: 100%;
  }
  .fv {
    height: 460px;
    min-height: 460px;
  }
  .fv__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    grid-template-columns: none;
    height: 460px;
    min-height: 460px;
    padding: 32px 16px 0;
    gap: 32px;
  }
  .fv__title {
    font-size: 26px;
    letter-spacing: 0.78px;
    margin-bottom: 16px;
    text-align: center;
    width: 100%;
  }
  .fv__title-pc {
    display: inline;
  }
  .fv__title-sp {
    display: none;
  }
  .fv__title-line {
    display: inline-block;
    font-size: 26px;
    line-height: 1;
    white-space: nowrap;
  }
  .fv__title-row {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    line-height: 1;
  }
  .fv__title-chip {
    font-size: 24px;
    padding: 6px 10px 8px;
  }
  .fv__title-wo {
    font-size: 22px;
  }
  .fv__title-kouritsu {
    font-size: 25px;
  }
  .fv__lead {
    font-size: 16px;
    margin: 0;
    letter-spacing: 1.6px;
    text-align: center;
  }
  .fv__sholder {
    font-size: 11px;
    margin: 0 0 12px;
    width: 343px;
    gap: 12px;
  }
  .fv__visual {
    width: 343px;
    height: 181px;
    max-width: none;
    order: 3;
    margin-top: auto;
  }
  .fv__visual img {
    width: 343px;
    height: 181px;
    object-fit: cover;
    object-position: center bottom;
  }
  .fv__copy {
    max-width: none;
  }
  .fv .cta-button {
    width: 343px;
  }
  .fv .cta-button__primary {
    font-size: 17px;
  }
  .fv .cta-button__sub {
    font-size: 14px;
  }
  .introduction {
    padding: 48px 16px 56px;
  }
  .introduction__inner {
    gap: 24px;
  }
  .introduction__lede {
    font-size: 14px;
    line-height: 2;
    letter-spacing: 0.84px;
  }
  .introduction__lede p + p {
    margin-top: 8px;
  }
  .introduction__heading-row {
    flex-direction: column;
    gap: 2px;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 1.2px;
    line-height: 1.6;
    text-align: center;
  }
  .introduction__strong {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1.44px;
    white-space: normal;
  }
  .introduction__emphasis {
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }
  .introduction__quote {
    height: 17px;
    width: auto;
  }
  .check-point {
    padding-bottom: 64px;
  }
  .check-point__inner {
    padding-top: 48px;
  }
  .check-point__head {
    margin-bottom: 32px;
    gap: 4px;
    --check-title-fs: 20px;
  }
  .check-point__title {
    font-size: var(--check-title-fs);
  }
  .check-point__sub {
    font-size: 16px;
  }
  .check-point__cards {
    flex-direction: column;
    align-items: center;
    gap: 32px;
    margin-bottom: 0;
    z-index: auto;
  }
  .check-point__outro {
    width: 100%;
    max-width: 343px;
    margin: 32px auto 24px;
    padding-inline: 16px;
    background: rgba(226, 234, 240, 0.3);
    border: none;
    border-radius: 0;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.84px;
    line-height: 1.6;
  }
  .check-point__outro p {
    margin: 0;
  }
  .check-point__outro p + p {
    margin-top: 8px;
  }
  .check-point__card {
    flex: 1 1 auto;
    width: 100%;
    max-width: 343px;
    min-height: 0;
    padding-top: 40px;
  }
  .check-point__card-base {
    height: auto;
    aspect-ratio: 407/310;
  }
  .check-point__card-title {
    font-size: 18px;
    width: 100%;
  }
  .check-point__cta-band {
    height: 65%;
    min-height: 400px;
  }
  .check-point__cta-wrap {
    padding-bottom: 48px;
  }
  .check-point__cta-wrap .cta-button {
    position: relative;
    justify-content: center;
    padding-right: 72px;
  }
  .check-point__cta-wrap .cta-button__lines {
    width: 100%;
  }
  .check-point__cta-wrap .cta-button__icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
  }
  .check-point__sholder {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.72px;
    line-height: 1;
    gap: 12px;
    align-items: center;
    justify-content: center;
    text-align: center;
    white-space: nowrap;
  }
  .check-point__sholder::before, .check-point__sholder::after {
    content: "";
    width: 15px;
    height: 2px;
    background: #0a1464;
    border-radius: 4px;
    flex: 0 0 auto;
  }
  .check-point__sholder::before {
    transform: rotate(68deg);
  }
  .check-point__sholder::after {
    transform: rotate(112deg);
  }
  .check-point .cta-button__sub {
    font-size: 14px;
    letter-spacing: 0.84px;
    white-space: nowrap;
  }
  .check-point {
    padding: 56px 0 64px;
  }
  .check-point__inner {
    gap: 40px;
  }
  .check-point__title-wrap {
    padding-top: 4px;
  }
  .check-point__col {
    flex: 1 1 100%;
    max-width: 100%;
    padding: 0 16px 32px;
  }
  .check-point__col + .check-point__col::before {
    display: none;
  }
  .check-point__pill {
    width: min(256px, 100%);
    margin-bottom: 14px;
  }
  .turning-point {
    padding: 48px 16px;
  }
  .turning-point__headline-keep {
    white-space: normal;
  }
  .solution {
    padding: 56px 0 64px;
  }
  .solution__intro {
    margin-bottom: 32px;
    padding-inline: 0;
  }
  .solution__lede {
    font-size: 16px;
    letter-spacing: 0.96px;
    line-height: 1.6;
  }
  .solution__title {
    font-size: 20px;
    letter-spacing: 1.2px;
  }
  .solution__columns {
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin-bottom: 40px;
  }
  .solution__message p {
    font-size: 17px;
    letter-spacing: 1.02px;
    line-height: 1.6;
    white-space: normal;
  }
  .solution__sholder {
    font-size: 12px;
    letter-spacing: 0.72px;
    line-height: 1;
    white-space: nowrap;
    justify-content: center;
  }
  .solution__cta .cta-button {
    position: relative;
    justify-content: center;
    padding-right: 72px;
  }
  .solution__cta .cta-button__lines {
    width: 100%;
  }
  .solution__cta .cta-button__icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
  }
  .solution__cta .cta-button__primary {
    font-size: 17px;
    letter-spacing: 1.02px;
    white-space: nowrap;
  }
  .solution-card {
    max-width: 100%;
    width: 100%;
    gap: 4px;
  }
  .solution-card__problem p {
    white-space: normal;
  }
  .solution-card__panel {
    padding-top: 160px;
    min-height: 0;
  }
  .solution-card__fuki {
    top: 0;
    transform: translateX(-50%);
    width: calc(100% - 24px);
    max-width: none;
  }
  .solution-card__fuki-inner {
    padding: 16px 20px 18px;
    border-radius: 40px;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .solution-card__service, .solution-card__copy {
    width: 100%;
    max-width: 294px;
    margin-inline: auto;
  }
  .solution-card__service {
    justify-content: center;
  }
  .solution-card__service a {
    font-size: 15px;
  }
  .solution-card__service-suffix {
    font-size: 15px;
  }
  .solution-card__arrow {
    width: 30px;
    height: 34px;
    margin: -2px auto 56px;
  }
  .solution-card__service-chev {
    width: 20px;
    height: 20px;
  }
  .solution-card__copy {
    font-size: 14px;
  }
  .service {
    padding: 56px 0 64px;
  }
  .service__title {
    margin-bottom: 30px;
    padding-inline: 0;
    font-size: 20px;
    letter-spacing: 1.2px;
  }
  .service-card-lg {
    padding: 32px 16px;
    margin-bottom: 28px;
  }
  .service-card-lg__main {
    gap: 32px;
  }
  .service-card-lg__head {
    gap: 8px;
  }
  .service-card-lg__badge {
    font-size: 16px;
    line-height: 1.6;
  }
  .service-card-lg__name {
    font-size: 20px;
    letter-spacing: 1.2px;
  }
  .service-card-lg__logo-img {
    height: 26px;
  }
  .service-card-lg__desc {
    font-size: 16px;
    letter-spacing: 0.8px;
  }
  .service-card-lg__list {
    gap: 16px;
  }
  .service-card-lg__list li {
    font-size: 13px;
    letter-spacing: 0.78px;
  }
  .service-card-lg__tag {
    font-size: 14px;
    letter-spacing: 0.84px;
  }
  .cta-section {
    padding: 60px 20px 72px;
  }
  .cta-section__banner {
    margin-bottom: 32px;
    padding: 16px 16px 18px;
    max-width: 343px;
    margin-inline: auto;
    overflow: hidden;
  }
  .cta-section__banner h2 {
    white-space: normal;
    font-size: 20px;
    letter-spacing: 1.2px;
    line-height: 1.4;
  }
  .cta-section__inner {
    gap: 16px;
  }
  .cta-section__sholder {
    margin: 0 0 12px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.72px;
    line-height: 1.2;
    gap: 12px;
    align-items: center;
    justify-content: center;
    text-align: center;
    white-space: normal;
    max-width: 343px;
  }
  .cta-section__sholder::before, .cta-section__sholder::after {
    content: "";
    width: 15px;
    height: 2px;
    background: #0a1464;
    border-radius: 4px;
    flex: 0 0 auto;
  }
  .cta-section__sholder::before {
    transform: rotate(68deg);
  }
  .cta-section__sholder::after {
    transform: rotate(112deg);
  }
  .cta-section__area {
    padding: 0;
  }
  .cta-section .cta-button--wide {
    max-width: none;
    width: 343px;
    position: relative;
    justify-content: center;
    padding-right: 72px;
  }
  .cta-section .cta-button__lines {
    width: 100%;
  }
  .cta-section .cta-button__icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
  }
  .cta-section .cta-button__primary {
    font-size: 17px;
  }
  .cta-section .cta-button__sub {
    font-size: 14px;
  }
  .footer {
    padding-inline: 16px;
  }
  .footer__inquiry {
    flex-direction: column;
    align-items: stretch;
    gap: 32px;
    padding: 32px 0 0;
  }
  .footer__heading {
    font-size: 16px;
    font-weight: 700;
  }
  .footer__phone-wrap {
    width: 100%;
    max-width: none;
    padding: 6px 22.4px 8px;
  }
  .footer__phone {
    letter-spacing: 1.92px;
  }
  .footer__hours {
    line-height: 1.4;
    text-align: center;
    white-space: pre-line;
  }
  .footer__link, .footer__list {
    font-size: 12px;
    letter-spacing: 0;
  }
  .footer__copy {
    margin-top: 12px;
    border-top: none;
    padding: 0 0 16px;
  }
  .footer__links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    flex: 0 0 auto;
    gap: 12px;
  }
  .footer__logo-img {
    display: block;
    width: 84px;
    height: 19px;
    object-fit: contain;
  }
  .footer__divider {
    display: none;
  }
  .footer__col {
    flex: 1 1 auto;
    width: 100%;
    align-items: flex-start;
    text-align: left;
  }
  .footer__col--support {
    align-items: center;
    text-align: center;
  }
  .footer__col--privacy, .footer__col--related, .footer__col--misumi-logo {
    flex: 1 1 auto;
    width: 100%;
  }
  .footer__col--misumi-logo {
    box-sizing: border-box;
    border-top: 1px solid #8f8f8f;
    padding-top: 16px;
    padding-bottom: 0;
    align-items: center;
    justify-content: center;
  }
  .footer__logo {
    margin-top: 0;
    justify-content: center;
    align-items: center;
  }
}
html.is-nav-open {
  overflow: hidden;
  touch-action: none;
}

.root {
  min-height: 100vh;
}

.main,
.footer {
  max-width: 100%;
  overflow-x: hidden;
}

.main {
  padding-bottom: 96px;
}
@media (max-width: 768px) {
  .main {
    padding-bottom: env(safe-area-inset-bottom, 0px);
  }
}

.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 40px);
}/*# sourceMappingURL=layout.css.map */