@charset "UTF-8";
/**
 * index.scss
 * このファイルではスタイリングしない
 * 他のSassファイルを呼び出してコンパイルさせるファイル
 */
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
}

input, select {
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: all ease-in 0.2s;
}
a:hover {
  opacity: 0.7;
}

html {
  box-sizing: border-box;
}

*,
:after,
:before {
  box-sizing: inherit;
}

a,
button {
  outline: 0;
}

button {
  padding: 0;
  border: 0;
  background: 0 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

li,
ol,
ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

dl,
p {
  margin: 0;
}

dl {
  padding: 0;
}

dd {
  margin: 0;
}

img {
  vertical-align: top;
  width: 100%;
  height: auto;
}

em {
  font-style: normal;
}

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

.header {
  z-index: 10;
  width: 100%;
  background-color: #fff;
}
.header .header_inner {
  display: flex;
  justify-content: space-between;
  padding: 15px 0;
  margin: 0 auto;
  width: 100%;
}
@media (max-width: 767px) {
  .header .header_inner {
    padding: 10px 12px;
  }
}
.header .header_inner .header_logo-container {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
}
.header .header_inner .header_logo-container .header_logo {
  margin-right: 15px;
  width: 100px;
}
.header .header_inner .header_logo-container .header_logo-text {
  font-size: 15px;
}
@media (max-width: 767px) {
  .header .header_inner .header_logo-container {
    align-items: start;
    flex-wrap: nowrap;
    justify-content: center;
  }
  .header .header_inner .header_logo-container .header_logo-text {
    font-size: 10px;
    margin-bottom: 5px;
  }
}
.header .header_inner .header_link-container {
  align-items: center;
  display: flex;
  gap: 33px;
}
.header .header_inner .header_link-container .header_text-link {
  font-size: 13px;
}

.header_button:hover,
.support > a:hover,
.secret-btn:hover,
.entry_submit:hover {
  opacity: 0.75;
}

.header_button {
  background-color: #ffe400;
  color: #333;
  padding: 15px 30px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  border-radius: 5px;
  gap: 5px;
}
@media (max-width: 767px) {
  .header_button {
    padding: 15px;
    font-size: 14px;
  }
}
@media (max-width: 360px) {
  .header_button {
    font-size: 10px;
    padding: 10px;
  }
}
.header_button img {
  height: inherit;
  width: 8%;
}
.header_button a {
  display: flex;
  align-items: center;
  align-content: center;
  gap: 7px;
}

@media (max-width: 767px) {
  .header_logo-container {
    flex-direction: column;
  }
}

body {
  margin: auto;
  color: #333;
  line-height: 1.5;
  overflow-wrap: break-word;
  overscroll-behavior-y: none;
  font-feature-settings: "palt";
}
@media (max-width: 767px) {
  body {
    min-width: 0px;
  }
}

.main-content {
  overflow-x: hidden;
}

.content-inner {
  margin: auto;
  max-width: 1000px;
  padding: 0 20px;
}
@media (max-width: 767px) {
  .content-inner {
    padding: 0;
    width: 100%;
  }
}

footer {
  background-color: #fff;
}

.footer_inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
@media (max-width: 767px) {
  .footer_inner {
    padding: 30px 0;
    flex-direction: column;
  }
}
.footer_inner .footer_flex-container {
  align-items: center;
  display: flex;
  gap: 30px;
}
@media (max-width: 767px) {
  .footer_inner .footer_flex-container {
    flex-direction: column;
  }
}
.footer_inner .footer_flex-container .footer_link-list {
  display: flex;
  gap: 25px;
}
@media (max-width: 767px) {
  .footer_inner .footer_flex-container .footer_link-list {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.footer_inner .footer_flex-container .footer_link-list li a {
  font-size: 12px;
  text-decoration: underline;
}
.footer_inner .footer_flex-container .footer_link-list li a:last-child {
  width: 46%;
}
.footer_inner .footer_flex-container .footer_copyright {
  font-size: 10px;
}
.footer_inner .footer_privacy {
  margin-left: auto;
  width: 70px;
}
@media (max-width: 767px) {
  .footer_inner .footer_privacy {
    transform: translateY(-33%);
    position: absolute;
    right: 5%;
  }
}

.is-pc {
  display: block !important;
}
@media (max-width: 767px) {
  .is-pc {
    display: none !important;
  }
}

.is-sp {
  display: none !important;
}
@media (max-width: 767px) {
  .is-sp {
    display: block !important;
  }
}

.blue-bg {
  background-color: #0156A0;
}

.green-bg {
  background-color: #484848;
}

.blue {
  color: #0156A0;
}

.green {
  color: #484848;
}

.w4 {
  font-weight: 400;
}

.w5 {
  font-weight: 500;
}

.w6 {
  font-weight: 600;
}

.w7 {
  font-weight: 700;
}

.w8 {
  font-weight: 800;
}

:root {
  --bc-probrem: #f9fdff;
  --color-title: #01a2bf;
  --color-text: #27304f;
  --bc-introduction: linear-gradient(270deg, #d9f0f5 0%, #f9feff 100%);
  --color-title-introduction: var(--color-title);
  --bc-example: linear-gradient(90deg, #d9f0f5 0%, #f9feff 100%);
  --color-title-example: var(--color-title);
  --bc-support: linear-gradient(270deg, #d9f0f5 0%, #f9feff 100%);
  --color-title-support: var(--color-title);
  --bc-contact: linear-gradient(270deg, #d9f0f5 0%, #f9feff 100%);
  --bc-text-card: #d7e9f1;
  --color-text-card: var(--color-text);
  --color-text-card-count: #b4cdd9;
  --bc-contact-btn: #1b1b38;
  --width-base: 980px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  :root {
    --width-base: 76.5625vw;
  }
}
@media (max-width: 767px) {
  :root {
    --width-base: 100%;
    --bc-introduction: linear-gradient(270deg, #d7f1f7 0%, #f3fafc 100%);
    --bc-example: linear-gradient(90deg, #d7f1f7 0%, #f3fafc 100%);
  }
}

body {
  overflow-wrap: unset !important;
  overscroll-behavior-y: unset !important;
}

main {
  overflow: unset !important;
}

.main-content {
  background: #f0f0f0;
}

.header {
  background: #fff;
  position: relative;
}
@media (max-width: 767px) {
  .header {
    position: sticky;
    top: 0;
  }
}
.header .header-inner {
  width: var(--width-base);
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .header .header-inner {
    padding: 2.1333333333vw 4vw;
  }
}
.header .header-col {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 60px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .header .header-col {
    padding: 0.625vw 4.6875vw;
  }
}
@media (max-width: 767px) {
  .header .header-col {
    padding: 0;
  }
}
@media (max-width: 767px) {
  .header .header-col:nth-child(1) {
    flex-wrap: wrap;
  }
}
.header .header-col:nth-child(1) span {
  font-size: 12px;
  color: #07080c;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .header .header-col:nth-child(1) span {
    font-size: 0.9375vw;
  }
}
@media (max-width: 767px) {
  .header .header-col:nth-child(1) span {
    width: 100%;
    order: 1;
    font-size: 2.6666666667vw;
  }
}
.header .header-logo {
  width: 90px;
  height: auto;
  margin-right: 12px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .header .header-logo {
    width: 7.03125vw;
    margin-right: 0.9375vw;
  }
}
@media (max-width: 767px) {
  .header .header-logo {
    order: 2;
    width: 24vw;
    margin-right: 0;
  }
}
.header .header-link {
  color: #000;
  font-size: 12px;
  font-weight: 500;
  text-decoration-line: underline;
  margin-right: 26px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .header .header-link {
    font-size: 0.9375vw;
    margin-right: 2.03125vw;
  }
}
@media (max-width: 767px) {
  .header .header-link {
    display: none;
  }
}
.header .header-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #27304f;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.48px;
  line-height: 1;
  border-radius: 4px;
  width: 200px;
  height: 38px;
  position: relative;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .header .header-btn {
    font-size: 1.25vw;
    width: 15.625vw;
    height: 2.96875vw;
  }
}
@media (max-width: 767px) {
  .header .header-btn {
    font-size: 3.7333333333vw;
    width: 40.8vw;
    height: 10.4vw;
  }
}
.header .header-btn::after {
  content: "";
  width: 6px;
  height: 10px;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 12px;
  background-color: #01a2bf;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .header .header-btn::after {
    width: 0.46875vw;
    height: 0.78125vw;
    top: calc(50% - 0.390625vw);
    right: 0.9375vw;
  }
}
@media (max-width: 767px) {
  .header .header-btn::after {
    display: none;
  }
}

.fv-wrap .fv {
  overflow: hidden;
  background: linear-gradient(180deg, #f9f9f9 0%, #e1e1e1 113.7%);
  background-image: url("/content_assets/61mp1/img/fv-bg-pc.webp");
  background-size: 1920px 526px;
  background-position: center center;
  background-repeat: no-repeat;
}
@media (min-width: 1920px) {
  .fv-wrap .fv {
    background-size: 100%;
    aspect-ratio: 1920/526;
  }
}
@media (min-width: 767px) and (max-width: 1280px) {
  .fv-wrap .fv {
    background-size: 150vw 41.09375vw;
  }
}
@media (max-width: 767px) {
  .fv-wrap .fv {
    background-image: unset;
  }
}
.fv-wrap .fv-inner {
  width: var(--width-base);
  margin-left: auto;
  margin-right: auto;
  height: 526px;
  position: relative;
}
@media (min-width: 1920px) {
  .fv-wrap .fv-inner {
    top: 50%;
    transform: translateY(-50%);
  }
}
@media (min-width: 767px) and (max-width: 1280px) {
  .fv-wrap .fv-inner {
    height: 41.09375vw;
  }
}
@media (max-width: 767px) {
  .fv-wrap .fv-inner {
    height: unset;
  }
}
.fv-wrap .fv-content {
  width: 492px;
  position: absolute;
  left: 76px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .fv-wrap .fv-content {
    width: 38.4375vw;
    left: 5.9375vw;
  }
}
@media (max-width: 767px) {
  .fv-wrap .fv-content {
    position: relative;
    width: 100%;
    left: unset;
    top: unset;
    transform: unset;
  }
}
.fv-wrap .fv-main-copy1 {
  color: var(--color-title);
  font-size: 26px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.525px;
  display: flex;
  align-items: center;
  gap: 3px;
  /* stylelint-disable-next-line no-descending-specificity */
}
@media (min-width: 767px) and (max-width: 1280px) {
  .fv-wrap .fv-main-copy1 {
    font-size: 2.03125vw;
    letter-spacing: 0.041015625vw;
  }
}
.fv-wrap .fv-main-copy1 span {
  font-size: 31px;
  letter-spacing: 0.63px;
  display: flex;
  position: relative;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .fv-wrap .fv-main-copy1 span {
    font-size: 2.421875vw;
    letter-spacing: 0.04921875vw;
  }
}
.fv-wrap .fv-main-copy1 span::before {
  content: "";
  display: block;
  background-color: var(--color-title);
  width: 5px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -4px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .fv-wrap .fv-main-copy1 span::before {
    width: 0.390625vw;
    top: -0.3125vw;
  }
}
.fv-wrap .fv-main-copy2 {
  display: block;
  color: #fff;
  font-size: 38px;
  font-weight: bold;
  line-height: 46px;
  background: linear-gradient(88deg, #169cc9 0%, #14aac6 50%, #60c1c5 100%);
  text-align: center;
  margin-top: 10px;
  letter-spacing: 0.77px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .fv-wrap .fv-main-copy2 {
    line-height: 3.59375vw;
    font-size: 2.96875vw;
    letter-spacing: 0.06015625vw;
  }
}
.fv-wrap .fv-main-copy2 small {
  font-size: 32px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .fv-wrap .fv-main-copy2 small {
    font-size: 2.5vw;
  }
}
.fv-wrap .fv-main-copy2 strong {
  color: #fbff22;
}
.fv-wrap .fv-main-copy3 {
  color: var(--color-text);
  margin-top: 16px;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.8px;
  line-height: 1;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .fv-wrap .fv-main-copy3 {
    margin-top: 1.25vw;
    font-size: 1.25vw;
    letter-spacing: 0.0625vw;
  }
}
.fv-wrap .fv-main-copy3 strong {
  font-size: 20px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .fv-wrap .fv-main-copy3 strong {
    font-size: 1.5625vw;
  }
}
.fv-wrap .fv-main-arrow {
  width: 22px;
  display: flex;
  margin: 16px auto 0;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .fv-wrap .fv-main-arrow {
    width: 1.71875vw;
    margin: 1.25vw auto 0;
  }
}
.fv-wrap .fv-cv-box {
  width: 492px;
  height: 223px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78) 0%, rgba(255, 255, 255, 0.47) 100%);
  margin-top: 16px;
  padding: 40px;
  box-shadow: 4px 10px 18px 0px rgba(0, 0, 0, 0.1215686275);
}
@media (max-width: 767px) {
  .fv-wrap .fv-cv-box {
    width: calc(100% - 10.6666666667vw);
    margin: 0 5.3333333333vw;
  }
}
@media (min-width: 767px) and (max-width: 1280px) {
  .fv-wrap .fv-cv-box {
    width: 38.4375vw;
    height: 17.421875vw;
    margin-top: 1.25vw;
    padding: 3.125vw;
  }
}
@media (max-width: 767px) {
  .fv-wrap .fv-cv-box {
    height: 47.2vw;
    position: absolute;
    left: 0;
    bottom: 5.3333333333vw;
    padding: 5.3333333333vw 3.7333333333vw;
  }
}
.fv-wrap .fv-cv-title {
  color: var(--color-title);
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .fv-wrap .fv-cv-title {
    font-size: 1.71875vw;
  }
}
@media (max-width: 767px) {
  .fv-wrap .fv-cv-title {
    font-size: 5.0666666667vw;
  }
}
.fv-wrap .fv-cv-title-bubble {
  font-size: 14px;
  padding: 4px 5px;
  background-color: var(--color-title);
  color: #fbff22;
  margin-right: 6px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .fv-wrap .fv-cv-title-bubble {
    font-size: 1.09375vw;
    padding: 0.3125vw 0.390625vw;
    margin-right: 0.46875vw;
  }
}
@media (max-width: 767px) {
  .fv-wrap .fv-cv-title-bubble {
    font-size: 3.2vw;
    padding: 1.0666666667vw 1.6vw;
    margin-bottom: 1.6vw;
    margin-right: unset;
    display: inline-block;
  }
}
.fv-wrap .fv-cv-text {
  color: var(--color-text);
  font-size: 16px;
  font-weight: bold;
  line-height: 1;
  margin-top: 21px;
  text-align: center;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .fv-wrap .fv-cv-text {
    font-size: 1.25vw;
    margin-top: 1.640625vw;
  }
}
@media (max-width: 767px) {
  .fv-wrap .fv-cv-text {
    font-size: 3.7333333333vw;
    margin-top: 3.2vw;
  }
}
.fv-wrap .fv-cv-btn-box {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .fv-wrap .fv-cv-btn-box {
    margin-top: 1.875vw;
    gap: 0.9375vw;
  }
}
@media (max-width: 767px) {
  .fv-wrap .fv-cv-btn-box {
    margin-top: 4.2666666667vw;
    gap: 1.6vw;
  }
}
.fv-wrap .fv-cv-btn {
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background-color: var(--color-text);
  position: relative;
  /* stylelint-disable-next-line no-descending-specificity */
}
@media (min-width: 767px) and (max-width: 1280px) {
  .fv-wrap .fv-cv-btn {
    font-size: 1.40625vw;
    width: 15.625vw;
    height: 4.375vw;
  }
}
@media (max-width: 767px) {
  .fv-wrap .fv-cv-btn {
    display: flex;
    align-items: center;
    gap: 1.6vw;
    font-size: 4.2666666667vw;
    width: 40vw;
    height: 13.3333333333vw;
  }
}
.fv-wrap .fv-cv-btn span {
  order: 2;
}
.fv-wrap .fv-cv-btn::after {
  content: "";
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
  background-color: #01a2bf;
  transform: translateY(-50%);
  width: 8px;
  height: 12px;
  position: absolute;
  top: 50%;
  right: 12px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .fv-wrap .fv-cv-btn::after {
    width: 0.625vw;
    height: 0.9375vw;
    right: 0.9375vw;
  }
}
@media (max-width: 767px) {
  .fv-wrap .fv-cv-btn::after {
    position: unset;
    width: 1.6vw;
    height: 2.4vw;
    transform: translateY(0);
  }
}

.common-btn {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0 auto;
  background: linear-gradient(90deg, #f4af00 0%, #f48a00 49.5%, #f46200 100%);
  width: 480px;
  height: 72px;
  position: relative;
  z-index: 2;
  border-radius: 4px;
  box-shadow: 2px 6px 13px 0px rgba(25, 110, 104, 0.36);
  /* stylelint-disable-next-line no-descending-specificity */
}
@media (min-width: 767px) and (max-width: 1280px) {
  .common-btn {
    width: 37.5vw;
    height: 5.625vw;
  }
}
@media (max-width: 767px) {
  .common-btn {
    width: calc(100% - 10.6666666667vw);
    height: 16vw;
  }
}
.common-btn .common-btn::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 14px;
  background-image: url("/content_assets/60rm1/img/btn-arrow-white.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .common-btn .common-btn::after {
    width: 0.78125vw;
    height: 1.09375vw;
    right: 1.5625vw;
  }
}
@media (max-width: 767px) {
  .common-btn .common-btn::after {
    width: 2.6666666667vw;
    height: 3.7333333333vw;
    right: 5.3333333333vw;
  }
}
.common-btn .common-btn:hover {
  opacity: 0.7 !important;
}
.common-btn .common-btn-maintext {
  color: #fff;
  font-size: 21px;
  font-weight: 900;
  line-height: 1;
  display: inline-flex;
  align-items: flex-end;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .common-btn .common-btn-maintext {
    font-size: 1.640625vw;
  }
}
@media (max-width: 767px) {
  .common-btn .common-btn-maintext {
    font-size: 4.8vw;
    letter-spacing: 0.04em;
  }
}
.common-btn .common-btn-maintext strong {
  font-size: 26px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .common-btn .common-btn-maintext strong {
    font-size: 2.03125vw;
  }
}
@media (max-width: 767px) {
  .common-btn .common-btn-maintext strong {
    font-size: 5.8666666667vw;
  }
}
.common-btn .common-btn-bubble {
  background-image: url("/content_assets/60rm1/img/common-btn-bubble-arrow.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top left;
  width: 93px;
  height: 72px;
  display: inline-flex;
  padding: 16px;
  position: relative;
  margin-right: 13px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .common-btn .common-btn-bubble {
    width: 7.265625vw;
    height: 5.625vw;
    padding: 1.25vw;
    margin-right: 1.015625vw;
  }
}
@media (max-width: 767px) {
  .common-btn .common-btn-bubble {
    width: 21.8666666667vw;
    height: 16vw;
    padding: 3.2vw 3.7333333333vw;
    margin-right: 3.7333333333vw;
  }
}
.common-btn .common-btn-bubble span {
  color: #f47201;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.1;
  letter-spacing: 0.1em;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .common-btn .common-btn-bubble span {
    font-size: 1.40625vw;
  }
}
@media (max-width: 767px) {
  .common-btn .common-btn-bubble span {
    font-size: 4.2666666667vw;
  }
}

.fade {
  transition: none; /* 他のトランジションが影響しないように設定 */
  will-change: transform, opacity; /* アニメーションのパフォーマンスを向上 */
}

.logo-content {
  filter: drop-shadow(0px 2px 8px rgba(0, 0, 0, 0.08));
}

.logos-slider {
  background-color: #fff;
}

.logos-slider .slick-slide {
  width: 120px;
  height: 60px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .logos-slider .slick-slide {
    width: 9.375vw;
    height: 4.6875vw;
  }
}
@media (max-width: 767px) {
  .logos-slider .slick-slide {
    width: 32vw;
    height: 16vw;
  }
}

.probrem {
  padding: 80px 0 120px 0;
  background-color: var(--bc-probrem);
}
@media (max-width: 767px) {
  .probrem {
    padding: 16vw 5% 13.3333333333vw 5%;
  }
}
.probrem .probrem-content {
  width: var(--width-base);
  margin-left: auto;
  margin-right: auto;
}
.probrem .probrem-heading {
  color: var(--color-text);
  font-size: 28px;
  font-weight: 900;
  text-align: center;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .probrem .probrem-heading {
    font-size: 2.1875vw;
  }
}
@media (max-width: 767px) {
  .probrem .probrem-heading {
    font-size: 5.3333333333vw;
  }
}
.probrem .probrem-box {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .probrem .probrem-box {
    margin: 3.90625vw auto 0;
    gap: 3.75vw;
  }
}
@media (max-width: 767px) {
  .probrem .probrem-box {
    grid-template-columns: 1fr;
    margin-top: 8vw;
  }
}
.probrem .probrem-bubble {
  position: relative;
  background-color: var(--bc-text-card);
  color: var(--color-text-card);
  padding-top: 40px;
  padding-bottom: 40px;
  border-radius: 4px;
  display: grid;
  place-items: center;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  line-height: 1.6;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .probrem .probrem-bubble {
    font-size: 1.40625vw;
    padding-top: 3.125vw;
    padding-bottom: 3.125vw;
  }
}
@media (max-width: 767px) {
  .probrem .probrem-bubble {
    padding-top: 0;
    padding-bottom: 0;
    height: 29.0666666667vw;
    line-height: 1.5;
  }
}
@media (max-width: 767px) {
  .probrem .probrem-col:nth-child(even) .probrem-bubble {
    order: 2;
  }
}
@media (max-width: 767px) {
  .probrem .probrem-bubble__inner {
    font-size: 3.7333333333vw;
  }
}
.probrem .probrem-bubble__inner strong {
  font-size: 22px;
  /* stylelint-disable-next-line no-descending-specificity */
}
@media (min-width: 767px) and (max-width: 1280px) {
  .probrem .probrem-bubble__inner strong {
    font-size: 1.71875vw;
  }
}
@media (max-width: 767px) {
  .probrem .probrem-bubble__inner strong {
    font-size: 4.8vw;
  }
}
.probrem .probrem-bubble__inner strong span {
  color: #01a2bf;
}
.probrem .probrem-bubble__count {
  font-family: "din-2014", sans-serif;
  color: var(--color-text-card-count);
  font-size: 30px;
  font-weight: bold;
  line-height: 1;
  position: absolute;
  top: 0;
  transform: translateY(-40%);
}
@media (min-width: 767px) and (max-width: 1280px) {
  .probrem .probrem-bubble__count {
    font-size: 2.34375vw;
  }
}
@media (max-width: 767px) {
  .probrem .probrem-bubble__count {
    font-size: 6.4vw;
  }
}
.probrem .probrem-bubble__count--left {
  left: 16px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .probrem .probrem-bubble__count--left {
    left: 1.25vw;
  }
}
@media (max-width: 767px) {
  .probrem .probrem-bubble__count--left {
    left: 2.6666666667vw;
  }
}
.probrem .probrem-bubble__count--right {
  right: 16px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .probrem .probrem-bubble__count--right {
    right: 1.25vw;
  }
}
@media (max-width: 767px) {
  .probrem .probrem-bubble__count--right {
    right: 2.6666666667vw;
  }
}
.probrem .probrem-bubble__img {
  position: absolute;
}
.probrem .probrem-bubble__img--case01 {
  width: 116px;
  bottom: -34px;
  left: -51px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .probrem .probrem-bubble__img--case01 {
    width: 9.0625vw;
    bottom: -2.65625vw;
    left: -3.984375vw;
  }
}
@media (max-width: 767px) {
  .probrem .probrem-bubble__img--case01 {
    width: 18.1333333333vw;
    bottom: -5.0666666667vw;
    left: -1.0666666667vw;
  }
}
.probrem .probrem-bubble__img--case02 {
  width: 110px;
  bottom: -34px;
  left: -24px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .probrem .probrem-bubble__img--case02 {
    width: 8.59375vw;
    bottom: -2.65625vw;
    left: -1.875vw;
  }
}
@media (max-width: 767px) {
  .probrem .probrem-bubble__img--case02 {
    width: 21.3333333333vw;
    bottom: -5.8666666667vw;
    left: unset;
    right: -1.6vw;
    transform: scale(-1, 1);
  }
}
.probrem .probrem-bubble__img--case03 {
  width: 102px;
  bottom: -20px;
  right: -18px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .probrem .probrem-bubble__img--case03 {
    width: 7.96875vw;
    bottom: -1.5625vw;
    right: -1.40625vw;
  }
}
@media (max-width: 767px) {
  .probrem .probrem-bubble__img--case03 {
    width: 19.4666666667vw;
    bottom: -2.1333333333vw;
    right: unset;
    left: 2.1333333333vw;
    transform: scale(-1, 1);
  }
}
.probrem .probrem-bubble__img--case04 {
  width: 95px;
  bottom: -28px;
  right: -24px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .probrem .probrem-bubble__img--case04 {
    width: 7.421875vw;
    bottom: -2.1875vw;
    right: -1.875vw;
  }
}
@media (max-width: 767px) {
  .probrem .probrem-bubble__img--case04 {
    width: 18.1333333333vw;
    bottom: -3.2vw;
    right: -2.9333333333vw;
  }
}

.relay-arrow {
  width: 100%;
  margin: 20px 0;
  display: flex;
  justify-content: center;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .relay-arrow {
    margin: 1.5625vw 0;
  }
}
@media (max-width: 767px) {
  .relay-arrow {
    margin: 5.3333333333vw 0;
  }
}
.relay-arrow .relay-arrow-img1 {
  width: 100px;
  height: 76px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .relay-arrow .relay-arrow-img1 {
    width: 7.8125vw;
    height: 5.9375vw;
  }
}
@media (max-width: 767px) {
  .relay-arrow .relay-arrow-img1 {
    width: 13.3333333333vw;
    height: 10.1333333333vw;
  }
}
.relay-arrow .relay-arrow-img2 {
  height: 130px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .relay-arrow .relay-arrow-img2 {
    height: 10.15625vw;
  }
}
@media (max-width: 767px) {
  .relay-arrow .relay-arrow-img2 {
    width: 5.8666666667vw;
    height: 16.5333333333vw;
  }
}

.introduction {
  background: var(--bc-introduction);
  padding-bottom: 100px;
  /* stylelint-disable-next-line no-descending-specificity */
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction {
    padding-bottom: 7.8125vw;
  }
}
@media (max-width: 767px) {
  .introduction {
    padding-bottom: 13.3333333333vw;
  }
}
.introduction .introduction-heading {
  text-align: center;
  color: var(--color-title-introduction);
  font-weight: bold;
  line-height: 1;
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-direction: column;
  font-style: normal;
}
@media (max-width: 767px) {
  .introduction .introduction-heading {
    gap: 1.6vw;
  }
}
.introduction .introduction-heading-sub {
  font-size: 26px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction .introduction-heading-sub {
    font-size: 2.03125vw;
  }
}
@media (max-width: 767px) {
  .introduction .introduction-heading-sub {
    font-size: 3.7333333333vw;
  }
}
.introduction .introduction-heading-main {
  font-size: 46px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction .introduction-heading-main {
    font-size: 3.59375vw;
  }
}
@media (max-width: 767px) {
  .introduction .introduction-heading-main {
    font-size: 6.9333333333vw;
    line-height: 1.4;
  }
}
.introduction .introduction-heading2 {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  font-weight: bold;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction .introduction-heading2 {
    margin-top: 3.90625vw;
  }
}
@media (max-width: 767px) {
  .introduction .introduction-heading2 {
    margin-top: 5.3333333333vw;
    gap: 2.6666666667vw;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.introduction .introduction-heading2::before,
.introduction .introduction-heading2::after {
  content: "";
  display: block;
  width: 24px;
  height: 14px;
  background-image: url("/content_assets/61mp1/img/introduction-heading2-ornament.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction .introduction-heading2::before,
  .introduction .introduction-heading2::after {
    width: 1.875vw;
    height: 1.09375vw;
  }
}
@media (max-width: 767px) {
  .introduction .introduction-heading2::before,
  .introduction .introduction-heading2::after {
    width: 5.8666666667vw;
    height: 3.2vw;
  }
}
.introduction .introduction-heading2-text {
  font-size: 26px;
  font-weight: bold;
  line-height: 1;
  color: var(--color-text);
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction .introduction-heading2-text {
    font-size: 2.03125vw;
  }
}
@media (max-width: 767px) {
  .introduction .introduction-heading2-text {
    font-size: 5.3333333333vw;
    line-height: 1.4;
    display: flex;
    flex-direction: column;
    text-align: center;
  }
  .introduction .introduction-heading2-text small {
    font-size: 3.7333333333vw;
  }
}
@media (max-width: 767px) {
  .introduction .introduction-heading2-text span {
    font-size: 5.3333333333vw;
    margin-top: 2.1333333333vw;
    display: inline-block;
  }
}
.introduction .introduction-comment {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction .introduction-comment {
    margin-top: 3.125vw;
  }
}
@media (max-width: 767px) {
  .introduction .introduction-comment {
    display: block;
    width: calc(100% - 10.6666666667vw);
    margin: 5.3333333333vw 5.3333333333vw 0;
  }
}
.introduction .introduction-relay-arrow {
  margin: 0 auto 25px;
  transform: translateY(-38px);
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction .introduction-relay-arrow {
    transform: translateY(-2.96875vw);
    margin: 0 auto 1.953125vw;
  }
}
@media (max-width: 767px) {
  .introduction .introduction-relay-arrow {
    transform: translateY(-5.0666666667vw);
    margin: 0 auto 3.2vw;
  }
}
.introduction .introduction-btn-box {
  margin-top: 40px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction .introduction-btn-box {
    margin-top: 3.125vw;
  }
}
@media (max-width: 767px) {
  .introduction .introduction-btn-box {
    margin-top: 5.3333333333vw;
  }
}
.introduction .introduction-btn {
  margin: 0 auto;
}
.introduction .introduction-slider {
  margin-top: 40px;
  margin-bottom: 0 !important;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction .introduction-slider {
    margin-top: 3.125vw;
  }
}
@media (max-width: 767px) {
  .introduction .introduction-slider {
    margin-top: 1.0666666667vw;
    margin-bottom: 0vw !important;
  }
}
.introduction .introduction-slider::after {
  content: "";
  display: block;
  background-color: #000;
}
.introduction .introduction-slider .slick-track {
  display: flex;
}
.introduction .introduction-slider .slick-slide {
  height: auto !important;
}
.introduction .introduction-slider-col {
  width: 505px;
  opacity: 0.1;
  scale: 0.9;
  margin-left: -15px;
  margin-right: -15px;
  transition: all 0.3s ease-out;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction .introduction-slider-col {
    width: 35.546875vw;
    margin-left: -1.171875vw;
    margin-right: -1.171875vw;
  }
}
@media (max-width: 767px) {
  .introduction .introduction-slider-col {
    width: 94.6666666667vw;
    margin-left: -5.3333333333vw;
    margin-right: -5.3333333333vw;
    opacity: 0.5;
  }
}
.introduction .introduction-slider-col.slick-center {
  opacity: 1;
  scale: 1;
}
.introduction .introduction-slider__notice {
  color: #999;
  font-size: 10px;
  font-weight: 400;
  line-height: 1;
  width: 460px;
  margin: 0 auto;
  text-align: end;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction .introduction-slider__notice {
    font-size: 0.78125vw;
    width: 35.9375vw;
  }
}
@media (max-width: 767px) {
  .introduction .introduction-slider__notice {
    font-size: 2.6666666667vw;
    width: 86.6666666667vw;
  }
}
.introduction .introduction-slider-custom-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .introduction .introduction-slider-custom-controls {
    margin-top: 2.6666666667vw;
  }
}
.introduction .introduction-slider-custom-arrow {
  width: 48px;
  height: 48px;
  background-image: url("/content_assets/61mp1/img/example-slider-custom-arrow.svg");
  background-repeat: no-repeat;
  background-size: contain;
  cursor: pointer;
  position: relative;
  transition: all ease-in 0.2s;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction .introduction-slider-custom-arrow {
    width: 3.75vw;
    height: 3.75vw;
  }
}
@media (max-width: 767px) {
  .introduction .introduction-slider-custom-arrow {
    width: 11.7333333333vw;
    height: 11.7333333333vw;
  }
}
.introduction .introduction-slider-custom-arrow:hover {
  opacity: 0.7;
}
.introduction .introduction-slider-custom-prev {
  order: -1;
  margin-right: 40px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction .introduction-slider-custom-prev {
    margin-right: 3.125vw;
  }
}
@media (max-width: 767px) {
  .introduction .introduction-slider-custom-prev {
    margin-right: 4vw;
  }
}
.introduction .introduction-slider-custom-next {
  margin-left: 40px;
  transform: rotate(180deg);
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction .introduction-slider-custom-next {
    margin-left: 3.125vw;
  }
}
@media (max-width: 767px) {
  .introduction .introduction-slider-custom-next {
    margin-left: 4vw;
  }
}
.introduction .example-btn-box {
  margin-top: 40px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction .example-btn-box {
    margin-top: 3.125vw;
  }
}
@media (max-width: 767px) {
  .introduction .example-btn-box {
    margin-top: 5.3333333333vw;
  }
}
.introduction .introduction-slider-wrap {
  gap: 22px;
  display: flex;
  align-items: center;
}
.introduction .introduction-slider-wrap li {
  display: flex;
}
.introduction .introduction-slider-dot-item {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #c3cfd8;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction .introduction-slider-dot-item {
    width: 0.78125vw;
    height: 0.78125vw;
  }
}
.introduction .introduction-slider-wrap .slick-active .introduction-slider-dot-item {
  background-color: var(--color-text);
  width: 14px;
  height: 14px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction .introduction-slider-wrap .slick-active .introduction-slider-dot-item {
    width: 1.09375vw;
    height: 1.09375vw;
  }
}

.example {
  padding: 80px 0;
  background: var(--bc-example);
  /* stylelint-disable-next-line no-descending-specificity */
}
@media (min-width: 767px) and (max-width: 1280px) {
  .example {
    padding: 6.25vw 0;
  }
}
@media (max-width: 767px) {
  .example {
    padding: 10.6666666667vw 0;
  }
}
.example .example-heading {
  color: var(--color-title-example);
  font-size: 32px;
  font-weight: bold;
  line-height: 1;
  text-align: center;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .example .example-heading {
    font-size: 3.125vw;
  }
}
@media (max-width: 767px) {
  .example .example-heading {
    font-size: 6.4vw;
  }
}
.example .example-slider {
  margin-top: 40px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .example .example-slider {
    margin-top: 3.125vw;
  }
}
@media (max-width: 767px) {
  .example .example-slider {
    margin-top: 5.3333333333vw;
    margin-bottom: 2.6666666667vw !important;
  }
}
.example .example-slider .slick-track {
  display: flex;
}
.example .example-slider .slick-slide {
  background-color: #cbe2eb;
  height: auto !important;
  border-radius: 4px;
}
.example .example-slider-col {
  width: 326px;
  margin: 0 12px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .example .example-slider-col {
    width: 25.46875vw;
    margin: 0 0.9375vw;
  }
}
@media (max-width: 767px) {
  .example .example-slider-col {
    width: 74.1333333333vw;
    margin: 0 2.6666666667vw;
  }
}
.example .example-slider-col__income {
  border-radius: 3px;
  background: #7cacc0;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  margin: 14px 20px 20px;
  height: 60px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .example .example-slider-col__income {
    margin: 1.09375vw 1.5625vw 1.5625vw;
    height: 4.6875vw;
  }
}
@media (max-width: 767px) {
  .example .example-slider-col__income {
    margin: 2.9333333333vw 4.5333333333vw 4.5333333333vw;
    height: 13.6vw;
  }
}
.example .example-slider-col__income-title {
  border-radius: 3px 0 0 3px;
  background: #01a2bf;
  display: flex;
  align-items: center;
  justify-content: center;
  writing-mode: vertical-rl;
}
.example .example-slider-col__income-title span {
  font-family: "Yu Gothic StdN E", sans-serif;
  font-size: 16px;
  font-weight: bold;
  line-height: 100%;
  padding: 0 7px;
  color: #fbff22;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .example .example-slider-col__income-title span {
    font-size: 1.25vw;
    padding: 0 0.546875vw;
  }
}
@media (max-width: 767px) {
  .example .example-slider-col__income-title span {
    font-size: 3.4666666667vw;
    padding: 0 1.3333333333vw;
  }
}
.example .example-slider-col__income-band {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.example .example-slider-col__income-omission {
  color: #fff;
  font-family: "din-2014", sans-serif;
  font-size: 26px;
  font-weight: bold;
  line-height: 30%;
  display: inline-block;
  margin-left: 3px;
  margin-right: 3px;
  transform: translateY(-5px);
}
@media (min-width: 767px) and (max-width: 1280px) {
  .example .example-slider-col__income-omission {
    font-size: 2.03125vw;
    margin-left: 0.234375vw;
    margin-right: 0.234375vw;
    transform: translateY(-0.390625vw);
  }
}
@media (max-width: 767px) {
  .example .example-slider-col__income-omission {
    font-size: 5.8666666667vw;
    margin-left: 0.8vw;
    margin-right: 0.8vw;
    transform: translateY(-1.3333333333vw);
  }
}
.example .example-slider-col__income-number {
  color: #fff;
  font-family: "din-2014", sans-serif;
  font-size: 44px;
  font-weight: bold;
  line-height: 1;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .example .example-slider-col__income-number {
    font-size: 3.4375vw;
  }
}
@media (max-width: 767px) {
  .example .example-slider-col__income-number {
    font-size: 10vw;
  }
}
.example .example-slider-col__income-unit {
  font-family: "Yu Gothic StdN E", sans-serif;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .example .example-slider-col__income-unit {
    font-size: 1.40625vw;
  }
}
@media (max-width: 767px) {
  .example .example-slider-col__income-unit {
    font-size: 4vw;
  }
}
.example .example-slider-col__company-name {
  color: #fff;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: -0.22px;
  width: 100%;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(90deg, #0099b5 0%, #8dc9d1 100%);
}
@media (min-width: 767px) and (max-width: 1280px) {
  .example .example-slider-col__company-name {
    height: 4.375vw;
    font-size: 1.5625vw;
  }
}
@media (max-width: 767px) {
  .example .example-slider-col__company-name {
    height: 12.8vw;
    font-size: 4.5333333333vw;
  }
}
.example .example-slider-col__company-name small {
  font-size: 16px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .example .example-slider-col__company-name small {
    font-size: 1.25vw;
  }
}
@media (max-width: 767px) {
  .example .example-slider-col__company-name small {
    font-size: 4.2666666667vw;
  }
}
.example .example-slider-col__img-area {
  width: 100%;
}
.example .example-slider-col__img {
  width: 100%;
  height: auto;
}
.example .example-slider-col__detail {
  padding: 20px 20px 0 20px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .example .example-slider-col__detail {
    padding: 1.5625vw 1.5625vw 0 1.5625vw;
  }
}
@media (max-width: 767px) {
  .example .example-slider-col__detail {
    padding: 4.5333333333vw 4.5333333333vw 0 4.5333333333vw;
  }
}
.example .example-slider-col__detail-title {
  color: var(--color-text);
  text-align: center;
  font-size: 22px;
  font-weight: bold;
  line-height: 1;
  padding-bottom: 16px;
  border-bottom: 1px solid #a8c6d5;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .example .example-slider-col__detail-title {
    font-size: 1.71875vw;
    padding-bottom: 1.25vw;
  }
}
@media (max-width: 767px) {
  .example .example-slider-col__detail-title {
    font-size: 4.8vw;
    padding-bottom: 3.4666666667vw;
  }
}
.example .example-slider-col__detail-title--small {
  font-size: 19px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .example .example-slider-col__detail-title--small {
    font-size: 1.484375vw;
  }
}
.example .example-slider-col__detail-inner {
  padding-top: 14px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .example .example-slider-col__detail-inner {
    padding-top: 1.09375vw;
  }
}
@media (max-width: 767px) {
  .example .example-slider-col__detail-inner {
    padding-top: 3.0666666667vw;
  }
}
.example .example-slider-col__detail-list-item {
  color: var(--color-text);
  font-size: 15px;
  font-weight: bold;
  line-height: 1.4;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .example .example-slider-col__detail-list-item {
    font-size: 1.171875vw;
  }
}
@media (max-width: 767px) {
  .example .example-slider-col__detail-list-item {
    font-size: 3.4666666667vw;
  }
}
.example .example-slider-col__detail-list-item::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url("/content_assets/61mp1/img/example-icon-check.svg");
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 5px;
  vertical-align: -2px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .example .example-slider-col__detail-list-item::before {
    width: 1.25vw;
    height: 1.25vw;
    margin-right: 0.390625vw;
  }
}
@media (max-width: 767px) {
  .example .example-slider-col__detail-list-item::before {
    width: 3.4666666667vw;
    height: 3.4666666667vw;
    margin-right: 1.0666666667vw;
  }
}
.example .example-slider-col__detail-list-item + .example-slider-col__detail-list-item {
  margin-top: 6px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .example .example-slider-col__detail-list-item + .example-slider-col__detail-list-item {
    margin-top: 0.46875vw;
  }
}
@media (max-width: 767px) {
  .example .example-slider-col__detail-list-item + .example-slider-col__detail-list-item {
    margin-top: 1.3333333333vw;
  }
}
.example .example-slider__notice {
  text-align: center;
  color: #999;
  font-size: 10px;
  font-weight: 400;
  line-height: 1;
  margin-top: 10px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .example .example-slider__notice {
    font-size: 0.78125vw;
    margin-top: 0.78125vw;
  }
}
@media (max-width: 767px) {
  .example .example-slider__notice {
    font-size: 2.6666666667vw;
    margin-top: 2.6666666667vw;
  }
}
.example .example-slider-custom-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}
.example .example-slider-custom-arrow {
  width: 48px;
  height: 48px;
  background-image: url("/content_assets/61mp1/img/example-slider-custom-arrow.svg");
  background-repeat: no-repeat;
  background-size: contain;
  cursor: pointer;
  position: relative;
  transition: all ease-in 0.2s;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .example .example-slider-custom-arrow {
    width: 3.75vw;
    height: 3.75vw;
  }
}
@media (max-width: 767px) {
  .example .example-slider-custom-arrow {
    width: 11.7333333333vw;
    height: 11.7333333333vw;
  }
}
.example .example-slider-custom-arrow:hover {
  opacity: 0.7;
}
.example .example-slider-custom-prev {
  order: -1;
  margin-right: 20px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .example .example-slider-custom-prev {
    margin-right: 1.5625vw;
  }
}
@media (max-width: 767px) {
  .example .example-slider-custom-prev {
    margin-right: 4vw;
  }
}
.example .example-slider-custom-next {
  margin-left: 20px;
  transform: rotate(180deg);
}
@media (min-width: 767px) and (max-width: 1280px) {
  .example .example-slider-custom-next {
    margin-left: 1.5625vw;
  }
}
@media (max-width: 767px) {
  .example .example-slider-custom-next {
    margin-left: 4vw;
  }
}
.example .example-btn-box {
  margin-top: 40px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .example .example-btn-box {
    margin-top: 3.125vw;
  }
}
@media (max-width: 767px) {
  .example .example-btn-box {
    margin-top: 5.3333333333vw;
  }
}
.example .example-slider-wrap {
  gap: 12px;
  display: flex;
  align-items: center;
}
.example .example-slider-wrap li {
  display: flex;
}
.example .example-slider-dot-item {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #c3cfd8;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .example .example-slider-dot-item {
    width: 0.78125vw;
    height: 0.78125vw;
  }
}
.example .example-slider-wrap .slick-active .example-slider-dot-item {
  background-color: var(--color-text);
  width: 14px;
  height: 14px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .example .example-slider-wrap .slick-active .example-slider-dot-item {
    width: 1.09375vw;
    height: 1.09375vw;
  }
}

.support {
  background: var(--bc-support);
  /* stylelint-disable-next-line no-descending-specificity */
  /* stylelint-disable-next-line no-descending-specificity */
}
.support .support-content {
  width: var(--width-base);
  margin-left: auto;
  margin-right: auto;
}
.support .support-heading {
  text-align: center;
}
.support .support-heading-sub {
  color: var(--color-title-support);
  text-align: center;
  font-size: 26px;
  font-weight: bold;
  line-height: 1;
  display: block;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support .support-heading-sub {
    font-size: 2.03125vw;
  }
}
@media (max-width: 767px) {
  .support .support-heading-sub {
    font-size: 4.2666666667vw;
    line-height: 1.8;
  }
}
.support .support-heading-main {
  color: var(--color-title-support);
  font-size: 46px;
  font-weight: bold;
  line-height: 1;
  margin-top: 24px;
  display: inline-block;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support .support-heading-main {
    margin-top: 1.875vw;
    font-size: 3.59375vw;
  }
}
@media (max-width: 767px) {
  .support .support-heading-main {
    margin-top: 0.5333333333vw;
    font-size: 6.9333333333vw;
    line-height: 1.3;
  }
}
.support .support-relay-arrow1 {
  margin: 0 auto 25px;
  transform: translateY(-38px);
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support .support-relay-arrow1 {
    transform: translateY(-2.96875vw);
    margin: 0 auto 1.953125vw;
  }
}
@media (max-width: 767px) {
  .support .support-relay-arrow1 {
    transform: translateY(-5.0666666667vw);
    margin: 0 auto 3.2vw;
  }
}
.support .support-relay-arrow2 {
  margin: 10px auto 0;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support .support-relay-arrow2 {
    margin: 0.78125vw auto 0;
  }
}
.support .support-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support .support-box {
    gap: 3.125vw;
    margin-top: 4.6875vw;
  }
}
@media (max-width: 767px) {
  .support .support-box {
    grid-template-columns: 1fr;
    gap: 8vw;
    margin-top: 8vw;
  }
}
@media (max-width: 767px) {
  .support .support-col + .support-col {
    margin-top: 8vw;
  }
}
@media (max-width: 767px) {
  .support .support-col:nth-child(2) {
    margin-top: 8vw;
  }
}
@media (max-width: 767px) {
  .support .support-col__inner {
    width: calc(100% - 10.6666666667vw);
    margin: 0 5.3333333333vw;
  }
}
.support .support-col__title {
  padding: 15px 0;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  background: linear-gradient(90deg, #0099b5 0%, #8dc9d1 100%);
  font-size: 16px;
  color: #fff;
  line-height: 1.3;
  font-weight: bold;
  text-align: center;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support .support-col__title {
    padding: 1.171875vw 0;
    font-size: 1.25vw;
  }
}
@media (max-width: 767px) {
  .support .support-col__title {
    padding: 3.4666666667vw 0;
    font-size: 4.8vw;
  }
}
.support .support-col__title strong {
  font-size: 20px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support .support-col__title strong {
    font-size: 1.5625vw;
  }
}
@media (max-width: 767px) {
  .support .support-col__title strong {
    font-size: 5.3333333333vw;
  }
}
.support .support-col__whitearea {
  background-color: #fff;
  border-left: 4px solid rgba(73, 178, 195, 0.6);
  border-right: 4px solid rgba(73, 178, 195, 0.6);
  border-bottom: 4px solid rgba(73, 178, 195, 0.6);
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.support .support-col__border {
  margin: 0 36px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support .support-col__border {
    margin: 0 2.8125vw;
  }
}
@media (max-width: 767px) {
  .support .support-col__border {
    margin: 0 13.8666666667vw;
  }
}
.support .support-col__textarea {
  text-align: center;
  height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support .support-col__textarea {
    height: 13.28125vw;
  }
}
@media (max-width: 767px) {
  .support .support-col__textarea {
    height: 37.3333333333vw;
  }
}
.support .support-col__textarea1 {
  background-image: url("/content_assets/61mp1/img/support-col__text1-bg.svg");
  background-repeat: no-repeat;
  background-size: 94px 101px;
  background-position: right 23px top 11px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support .support-col__textarea1 {
    background-size: 7.34375vw 7.890625vw;
    background-position: right 1.796875vw center 0.859375vw;
  }
}
@media (max-width: 767px) {
  .support .support-col__textarea1 {
    background-image: url("/content_assets/61mp1/img/support-col__text1-bg_sp.svg");
    background-size: 21.3333333333vw 18.1333333333vw;
    background-position: right 10.6666666667vw top 3.2vw;
  }
}
.support .support-col__text1 {
  color: var(--color-text);
  font-size: 29px;
  font-weight: bold;
  letter-spacing: -0.58px;
  margin-top: 30px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support .support-col__text1 {
    font-size: 2.265625vw;
    margin-top: 2.34375vw;
  }
}
@media (max-width: 767px) {
  .support .support-col__text1 {
    font-size: 7.4666666667vw;
    margin-top: 5.3333333333vw;
  }
}
.support .support-col__text1 strong {
  font-family: "din-2014", sans-serif;
  font-size: 100px;
  line-height: 80px;
  letter-spacing: -2px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support .support-col__text1 strong {
    font-size: 7.8125vw;
    line-height: 6.25vw;
  }
}
@media (max-width: 767px) {
  .support .support-col__text1 strong {
    font-size: 21.3333333333vw;
    line-height: 64px;
  }
}
.support .support-col__summary {
  background-image: url("/content_assets/61mp1/img/support-label.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 242px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 25%);
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support .support-col__summary {
    width: 18.90625vw;
    height: 3.125vw;
  }
}
@media (max-width: 767px) {
  .support .support-col__summary {
    background-image: url("/content_assets/61mp1/img/support-label_sp.svg");
    width: 64.5333333333vw;
    height: 9.6vw;
  }
}
.support .support-col__summary-text {
  color: #fcff67;
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 4px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support .support-col__summary-text {
    font-size: 1.40625vw;
    gap: 0.3125vw;
  }
}
@media (max-width: 767px) {
  .support .support-col__summary-text {
    font-size: 4.8vw;
    gap: 1.0666666667vw;
  }
}
.support .support-col__summary-text::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  background-image: url("/content_assets/61mp1/img/summary-icon-check.svg");
  background-repeat: no-repeat;
  background-size: contain;
  transform: translateY(2px);
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support .support-col__summary-text::before {
    width: 1.40625vw;
    height: 1.40625vw;
    transform: translateY(0.15625vw);
  }
}
@media (max-width: 767px) {
  .support .support-col__summary-text::before {
    width: 4.8vw;
    height: 4.8vw;
    transform: translateY(1px);
  }
}
.support .support-col__notice {
  color: #666;
  text-align: center;
  font-size: 10px;
  font-weight: 400;
  line-height: 1;
  width: 100%;
  margin-top: 3px;
  margin-bottom: auto;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support .support-col__notice {
    font-size: 0.78125vw;
    margin-top: 0.234375vw;
  }
}
@media (max-width: 767px) {
  .support .support-col__notice {
    font-size: 2.6666666667vw;
    margin-top: 0.8vw;
  }
}
.support .support-col__text2 {
  color: var(--color-text);
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 25px 26px auto;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support .support-col__text2 {
    font-size: 1.40625vw;
    gap: 1.25vw;
    margin: 1.953125vw 2.03125vw auto;
  }
}
@media (max-width: 767px) {
  .support .support-col__text2 {
    font-size: 4.8vw;
    gap: 3.7333333333vw;
    margin: 4.8vw 10.6666666667vw auto;
  }
}
.support .support-col__text2 li {
  list-style-type: disc;
  margin-left: 1.5rem;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support .support-col__text2 li {
    margin-left: 1.171875vw;
  }
}
.support .support-col__text2 li::marker {
  color: #01a2bf;
}
.support .support-col__text3 {
  color: var(--color-text);
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  margin-top: 14px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support .support-col__text3 {
    font-size: 1.40625vw;
    margin-top: 1.09375vw;
  }
}
@media (max-width: 767px) {
  .support .support-col__text3 {
    font-size: 4.2666666667vw;
    margin-top: 4.8vw;
  }
}
.support .support-col__img {
  display: block;
  width: 199px;
  margin-top: 10px;
  margin-bottom: auto;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support .support-col__img {
    width: 15.546875vw;
    margin-top: 0.78125vw;
  }
}
@media (max-width: 767px) {
  .support .support-col__img {
    width: 53.0666666667vw;
    margin-top: 3.2vw;
  }
}

.contact {
  background: var(--bc-contact);
  padding-bottom: 180px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .contact {
    padding-bottom: 14.0625vw;
  }
}
@media (max-width: 767px) {
  .contact {
    padding-bottom: 13.3333333333vw;
  }
}
.contact .contact-box {
  width: var(--width-base);
  margin-left: auto;
  margin-right: auto;
  background: linear-gradient(90deg, #0099b5 0%, #8dc9d1 100%);
  border-radius: 4px;
  padding-top: 50px;
  padding-bottom: 70px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .contact .contact-box {
    padding-top: 3.90625vw;
    padding-bottom: 5.46875vw;
  }
}
@media (max-width: 767px) {
  .contact .contact-box {
    margin: 0 5.3333333333vw;
    width: calc(100% - 10.6666666667vw);
    padding-top: 6.9333333333vw;
    padding-bottom: 6.9333333333vw;
    background: linear-gradient(90deg, #0099b5 0%, #8dc9d1 100%);
  }
}
.contact .contact-heading {
  font-weight: bold;
  line-height: 1;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact .contact-heading-bubble {
  background-color: #fbff22;
  color: #01a2bf;
  padding: 8px 18px;
  font-size: 18px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .contact .contact-heading-bubble {
    padding: 0.625vw 1.40625vw;
    font-size: 1.40625vw;
  }
}
@media (max-width: 767px) {
  .contact .contact-heading-bubble {
    padding: 1.0666666667vw 2.1333333333vw;
    font-size: 3.7333333333vw;
  }
}
.contact .contact-heading-main {
  font-size: 38px;
  margin-top: 24px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .contact .contact-heading-main {
    font-size: 2.96875vw;
    margin-top: 1.875vw;
  }
}
@media (max-width: 767px) {
  .contact .contact-heading-main {
    font-size: 6.4vw;
    margin-top: 2.6666666667vw;
  }
}
.contact .contact-text {
  font-size: 20px;
  font-weight: bold;
  margin-top: 24px;
  text-align: center;
  color: #fff;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .contact .contact-text {
    font-size: 1.5625vw;
    margin-top: 1.875vw;
  }
}
@media (max-width: 767px) {
  .contact .contact-text {
    font-size: 4.2666666667vw;
    margin-top: 4.2666666667vw;
  }
}
.contact .contact-btns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
  padding-left: 160px;
  padding-right: 160px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .contact .contact-btns {
    gap: 1.5625vw;
    margin-top: 3.125vw;
    padding-left: 12.5vw;
    padding-right: 12.5vw;
  }
}
@media (max-width: 767px) {
  .contact .contact-btns {
    grid-template-columns: 1fr;
    gap: 2.6666666667vw;
    padding-left: 5.3333333333vw;
    padding-right: 5.3333333333vw;
    margin-top: 6.4vw;
  }
}
.contact .contact-btn {
  text-align: center;
  padding-top: 25px;
  padding-bottom: 25px;
  position: relative;
  color: #fff;
  font-size: 22px;
  font-weight: bold;
  line-height: 1;
  border-radius: 4px;
  background: var(--bc-contact-btn);
}
@media (min-width: 767px) and (max-width: 1280px) {
  .contact .contact-btn {
    padding-top: 1.953125vw;
    padding-bottom: 1.953125vw;
    font-size: 1.71875vw;
  }
}
@media (max-width: 767px) {
  .contact .contact-btn {
    padding-top: 4.8vw;
    padding-bottom: 4.8vw;
    font-size: 4.8vw;
  }
}
.contact .contact-btn::after {
  content: "";
  width: 10px;
  height: 14px;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
  position: absolute;
  background-color: #01a2bf;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .contact .contact-btn::after {
    width: 0.78125vw;
    height: 1.09375vw;
    right: 1.5625vw;
  }
}
@media (max-width: 767px) {
  .contact .contact-btn::after {
    width: 2.1333333333vw;
    height: 3.2vw;
    right: 4.2666666667vw;
  }
}

.logos-slider .slick-slide {
  width: unset;
  height: unset;
  max-height: 60px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .logos-slider .slick-slide {
    width: unset;
    height: unset;
    max-height: 4.6875vw;
  }
}
@media (max-width: 767px) {
  .logos-slider .slick-slide {
    width: unset;
    height: unset;
    max-height: 16vw;
  }
}

.logos-slider {
  opacity: 0;
  transition: opacity 0.3s linear;
}

.logos-slider.slick-initialized {
  opacity: 1;
}

.example-slider-col__detail-title small {
  font-size: 16px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .example-slider-col__detail-title small {
    font-size: 1.25vw;
  }
}
@media (max-width: 767px) {
  .example-slider-col__detail-title small {
    font-size: 3.4871794872vw;
  }
}

/*
 * サイト共通部品 @Component
 * ボタン周り
 * 接頭辞「c-」を使用した方が分かりやすいが、
 * これまでの管理上、接頭辞なしで運用中
 */
.footer {
  padding-bottom: 32px;
  background-color: #fff;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .footer {
    padding-bottom: 2.5vw;
  }
}
@media (max-width: 767px) {
  .footer {
    padding-bottom: 9.3333333333vw;
  }
}

.footer-inner {
  max-width: 1080px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .footer-inner {
    max-width: 84.375vw;
  }
}
@media (max-width: 767px) {
  .footer-inner {
    display: block;
    position: relative;
    width: 100%;
    padding: 8.5333333333vw 0;
  }
}

.footer-col:nth-child(1) {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 32px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .footer-col:nth-child(1) {
    margin-top: 2.5vw;
  }
}
@media (max-width: 767px) {
  .footer-col:nth-child(1) {
    margin-top: 0;
    display: block;
  }
}

@media (max-width: 767px) {
  .footer-col:nth-child(2) {
    position: absolute;
    top: 4.2666666667vw;
    right: 6.4vw;
  }
}

.footer-logo {
  width: 128px;
  height: auto;
  display: inline-block;
  margin-right: 48px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .footer-logo {
    width: 10vw;
    margin-right: 3.75vw;
  }
}
@media (max-width: 767px) {
  .footer-logo {
    width: 26.9333333333vw;
    display: block;
    margin: 0 auto 0 6.4vw;
  }
}

.footer-nav-list {
  display: flex;
  gap: 24px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .footer-nav-list {
    gap: 1.875vw;
  }
}
@media (max-width: 767px) {
  .footer-nav-list {
    flex-wrap: wrap;
    justify-content: center;
    gap: 4.2666666667vw 8vw;
    margin-top: 8vw;
  }
}

.footer-nav-item a {
  color: #07080C;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .footer-nav-item a {
    font-size: 1.09375vw;
  }
}
@media (max-width: 767px) {
  .footer-nav-item a {
    font-size: 3.2vw;
  }
}

.footer-icon-list {
  display: flex;
}

.footer-icon-list a img {
  width: 80px;
  height: auto;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .footer-icon-list a img {
    width: 6.25vw;
  }
}
@media (max-width: 767px) {
  .footer-icon-list a img {
    width: 16vw;
  }
}

.footer-copyright {
  width: 100%;
  color: #666;
  font-size: 10px;
  font-weight: 500;
  display: inline-block;
  text-align: center;
  margin: 16px auto 0;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .footer-copyright {
    font-size: 0.78125vw;
    margin: 1.25vw auto 0;
  }
}
@media (max-width: 767px) {
  .footer-copyright {
    display: block;
    text-align: center;
    font-size: 3.2vw;
    color: #666;
    padding: 1.0666666667vw;
    background-color: unset;
    margin-top: 0;
  }
}

.footer-privacymark {
  width: 72px;
  height: 72px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .footer-privacymark {
    width: 5.625vw;
    height: 5.625vw;
  }
}
@media (max-width: 767px) {
  .footer-privacymark {
    width: 16vw;
    height: 16vw;
  }
}/*# sourceMappingURL=index.css.map */