@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;
}

/*
 * サイト共通部品 @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;
  }
}

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-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .header-inner {
    max-width: 76.5625vw;
  }
}
@media (max-width: 767px) {
  .header-inner {
    padding: 2.0512820513vw 3.8461538462vw;
  }
}

.header-col {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 60px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .header-col {
    padding: 0.625vw 4.6875vw;
  }
}
@media (max-width: 767px) {
  .header-col {
    padding: 0;
  }
}

@media (max-width: 767px) {
  .header-col:nth-child(1) {
    flex-wrap: wrap;
  }
}

.header-col:nth-child(1) span {
  font-size: 12px;
  color: #07080c;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .header-col:nth-child(1) span {
    font-size: 0.9375vw;
  }
}
@media (max-width: 767px) {
  .header-col:nth-child(1) span {
    width: 100%;
    order: 1;
    font-size: 2.5641025641vw;
  }
}

.header-logo {
  width: 90px;
  height: auto;
  margin-right: 12px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .header-logo {
    width: 7.03125vw;
    margin-right: 0.9375vw;
  }
}
@media (max-width: 767px) {
  .header-logo {
    order: 2;
    width: 23.0769230769vw;
    margin-right: 0;
  }
}

.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-link {
    font-size: 0.9375vw;
    margin-right: 2.03125vw;
  }
}
@media (max-width: 767px) {
  .header-link {
    display: none;
  }
}

.header-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #1e1f25;
  font-size: 16px;
  font-weight: 700;
  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-btn {
    font-size: 1.25vw;
    width: 15.625vw;
    height: 2.96875vw;
  }
}
@media (max-width: 767px) {
  .header-btn {
    font-size: 3.5897435897vw;
    width: 39.2307692308vw;
    height: 10vw;
  }
}

.header-btn::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 10px;
  background-image: url("/content_assets/56px3/img/btn-arrow-green.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: calc(50% - 5px);
  right: 12px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .header-btn::after {
    width: 0.46875vw;
    height: 0.78125vw;
    top: calc(50% - 0.390625vw);
    right: 0.9375vw;
  }
}
@media (max-width: 767px) {
  .header-btn::after {
    display: none;
  }
}

@media (min-width: 1920px) {
  .fv-wrap {
    position: relative;
    z-index: 1;
  }
}

@media (min-width: 1920px) {
  .fv-wrap::before {
    content: "";
    display: inline-block;
    width: 50%;
    height: 526px;
    background-image: url("/content_assets/56px3/img/fv-bg-left.png");
    background-repeat: repeat-x;
    background-size: contain;
    position: absolute;
    top: 0;
    left: 0;
  }
}

@media (min-width: 1920px) {
  .fv-wrap::after {
    content: "";
    display: inline-block;
    width: 50%;
    height: 526px;
    background-image: url("/content_assets/56px3/img/fv-bg-right.png");
    background-repeat: repeat-x;
    background-size: contain;
    position: absolute;
    top: 0;
    right: 0;
  }
}

.fv {
  overflow: hidden;
  background: linear-gradient(180deg, #f9f9f9 0%, #e1e1e1 113.7%);
  background-image: url("/content_assets/56px3/img/fv-bg-pc.webp");
  background-size: 1920px 526px;
  background-position: center center;
  background-repeat: no-repeat;
}
@media (min-width: 1920px) {
  .fv {
    background-size: contain;
    position: relative;
    z-index: 2;
  }
}
@media (min-width: 767px) and (max-width: 1280px) {
  .fv {
    background-size: 150vw 41.09375vw;
  }
}
@media (max-width: 767px) {
  .fv {
    background-image: unset;
    overflow: hidden;
  }
  .fv.v2 {
    overflow: visible;
  }
}

.fv-inner {
  height: 526px;
  max-width: 980px;
  width: 100%;
  position: relative;
  margin: 0 auto;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .fv-inner {
    height: 41.09375vw;
    max-width: 76.5625vw;
  }
}
@media (max-width: 767px) {
  .fv-inner {
    height: unset;
  }
}

.fv-content {
  width: 500px;
  position: absolute;
  left: 0px;
  top: 58px;
  z-index: 3;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .fv-content {
    width: 55%;
    left: 0vw;
    top: 50%;
    transform: translateY(-50%);
  }
}
@media (max-width: 767px) {
  .fv-content {
    position: relative;
    width: 100%;
    left: unset;
    top: unset;
  }
}

.fv-main-copy1 {
  color: #1e1f25;
  font-size: 31px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 4.36px;
  display: inline-block;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .fv-main-copy1 {
    font-size: 2.421875vw;
  }
}

.fv-main-copy--strong {
  color: #00be2c;
}

.fv-main-copy2 {
  color: #1e1f25;
  font-size: 49.5px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 4.36px;
  display: inline-block;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .fv-main-copy2 {
    font-size: 3.8671875vw;
  }
}

.fv-main-copy3 {
  color: #1e1f25;
  margin-top: 16px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.96px;
  display: inline-block;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .fv-main-copy3 {
    margin-top: 1.25vw;
    font-size: 1.25vw;
  }
}

.fv-cv-box {
  width: 492px;
  height: 223px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.77);
  margin-top: 23px;
  padding: 40px;
  box-shadow: 4px 10px 18px 0px rgba(0, 0, 0, 0.1215686275);
}
@media (max-width: 767px) {
  .fv-cv-box {
    width: calc(100% - 10.2564102564vw);
    margin: 0 5.1282051282vw;
  }
}
.fv-cv-box.v2 {
  background: #4fe24c;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .fv-cv-box {
    width: 38.4375vw;
    height: 17.421875vw;
    margin-top: 1.796875vw;
    padding: 3.125vw;
  }
}
@media (max-width: 767px) {
  .fv-cv-box {
    height: 45.3846153846vw;
    position: absolute;
    left: 0;
    bottom: 5.1282051282vw;
    padding: 5.1282051282vw 3.5897435897vw;
  }
  .fv-cv-box.v2 {
    bottom: -22.2222222222vw;
  }
}

.fv-cv-title {
  color: #1e1f25;
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .fv-cv-title {
    font-size: 1.71875vw;
  }
}
@media (max-width: 767px) {
  .fv-cv-title {
    font-size: 4.8717948718vw;
  }
}

.fv-cv-title-bubble {
  font-size: 14px;
  padding: 4px 5px;
  background: #4fe24c;
  margin-right: 6px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .fv-cv-title-bubble {
    font-size: 1.09375vw;
    padding: 0.3125vw 0.390625vw;
    margin-right: 0.46875vw;
  }
}
@media (max-width: 767px) {
  .fv-cv-title-bubble {
    font-size: 3.0769230769vw;
    padding: 1.0256410256vw 1.5384615385vw;
    margin-bottom: 1.5384615385vw;
    margin-right: unset;
    display: inline-block;
  }
}

.logos-v2 {
  display: none;
}
@media (max-width: 767px) {
  .logos-v2 {
    display: block;
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
    top: 44.1025641026vw;
    width: calc(100% - 10.2564102564vw);
  }
}

.fv-cv-box.v2 .fv-cv-title-bubble {
  background: #fff;
}

.fv-cv-text {
  color: #1e1f25;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  margin-top: 21px;
  text-align: center;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .fv-cv-text {
    font-size: 1.25vw;
    margin-top: 1.640625vw;
  }
}
@media (max-width: 767px) {
  .fv-cv-text {
    font-size: 3.5897435897vw;
    margin-top: 3.0769230769vw;
  }
}

.fv-cv-btn-box {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  gap: 12px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .fv-cv-btn-box {
    margin-top: 1.875vw;
    gap: 0.9375vw;
  }
}
@media (max-width: 767px) {
  .fv-cv-btn-box {
    margin-top: 4.1025641026vw;
    gap: 1.5384615385vw;
  }
}

.fv-cv-btn {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  width: 200px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background: #1e1f25;
  position: relative;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .fv-cv-btn {
    font-size: 1.40625vw;
    width: 15.625vw;
    height: 4.375vw;
  }
}
@media (max-width: 767px) {
  .fv-cv-btn {
    font-size: 4.1025641026vw;
    width: 38.4615384615vw;
    height: 12.8205128205vw;
  }
}

.fv-cv-btn::before {
  display: none;
}
@media (max-width: 767px) {
  .fv-cv-btn::before {
    content: "";
    display: inline-block;
    width: 1.5384615385vw;
    height: 2.5641025641vw;
    background-image: url("/content_assets/56px3/img/btn-arrow-green.svg");
    background-repeat: no-repeat;
    background-size: contain;
    margin-right: 1.5384615385vw;
  }
}

.fv-cv-btn::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 10px;
  background-image: url("/content_assets/56px3/img/btn-arrow-green.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: calc(50% - 3px);
  right: 12px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .fv-cv-btn::after {
    width: 0.46875vw;
    height: 0.78125vw;
    top: calc(50% - 0.390625vw);
    right: 0.9375vw;
  }
}
@media (max-width: 767px) {
  .fv-cv-btn::after {
    display: none;
  }
}

.common-btn {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #1e1f25;
  background: #4fe24c;
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
  width: 480px;
  height: 72px;
  position: relative;
  z-index: 2;
  border-radius: 2px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .common-btn {
    font-size: 1.71875vw;
    width: 37.5vw;
    height: 5.625vw;
  }
}
@media (max-width: 767px) {
  .common-btn {
    font-size: 4.8vw;
    width: calc(100% - 10.6666666667vw);
    height: 16vw;
  }
}

.common-btn::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 14px;
  background-image: url("/content_assets/56px3/img/btn-arrow-black.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: calc(50% - 7px);
  right: 20px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .common-btn::after {
    width: 0.78125vw;
    height: 1.09375vw;
    top: calc(50% - 0.546875vw);
    right: 1.5625vw;
  }
}
@media (max-width: 767px) {
  .common-btn::after {
    width: 2.6666666667vw;
    height: 3.7333333333vw;
    top: calc(50% - 1.8666666667vw);
    right: 3.2vw;
  }
}

.common-btn:hover {
  opacity: 0.7 !important;
}

.common-btn-bubble {
  background: #000;
  height: 72px;
  display: inline-flex;
  padding: 16px;
  position: relative;
  margin-right: 30px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .common-btn-bubble {
    height: 5.625vw;
    padding: 1.25vw;
    margin-right: 2.34375vw;
  }
}
@media (max-width: 767px) {
  .common-btn-bubble {
    height: 16vw;
    padding: 3.2vw 3.7333333333vw;
    margin-right: 9.0666666667vw;
  }
}

.common-btn-bubble::after {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(100% - 1px);
  margin-top: -37px;
  border: 37px solid transparent;
  border-left: 15px solid #000;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .common-btn-bubble::after {
    margin-top: -2.890625vw;
    border: 2.890625vw solid transparent;
    border-left: 1.171875vw solid #000;
    left: 100%;
  }
}
@media (max-width: 767px) {
  .common-btn-bubble::after {
    margin-top: -8vw;
    border: 8vw solid transparent;
    border-left: 2.6666666667vw solid #000;
    left: 100%;
  }
}

.common-btn-bubble span {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.1em;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .common-btn-bubble span {
    font-size: 1.40625vw;
  }
}
@media (max-width: 767px) {
  .common-btn-bubble span {
    font-size: 4.2666666667vw;
  }
}

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

.logos-slider {
  filter: drop-shadow(0px 4px 18px rgba(0, 0, 0, 0.06));
  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: 30.7692307692vw;
    height: 15.3846153846vw;
  }
}

.worries {
  padding: 80px 0 120px 0;
  background-color: #8d8f98;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .worries {
    padding: 6.25vw 0 9.375vw 0;
  }
}
@media (max-width: 767px) {
  .worries {
    padding: 15.3846153846vw 0 12.8205128205vw 0;
  }
}

.worries-heading {
  color: #fff;
  font-size: 28px;
  font-weight: 900;
  line-height: 100%;
  text-align: center;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .worries-heading {
    font-size: 2.1875vw;
  }
}
@media (max-width: 767px) {
  .worries-heading {
    font-size: 5.1282051282vw;
  }
}

.worries-box {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .worries-box {
    max-width: 76.5625vw;
  }
}
.worries-box {
  margin: 50px auto 0;
  display: flex;
  gap: 48px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .worries-box {
    margin: 3.90625vw auto 0;
    gap: 3.75vw;
  }
}
@media (max-width: 767px) {
  .worries-box {
    display: block;
    margin: 7.6923076923vw auto 0;
  }
}

.worries-col {
  position: relative;
}
@media (max-width: 767px) {
  .worries-col {
    display: block;
    margin: 0 5.1282051282vw;
  }
}

@media (max-width: 767px) {
  .worries-col + .worries-col {
    margin-top: 7.6923076923vw;
  }
}

.worries-bubble {
  width: 466px;
  height: 146px;
  background: #1e1f25;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .worries-bubble {
    width: 36.40625vw;
    height: 11.40625vw;
  }
}
@media (max-width: 767px) {
  .worries-bubble {
    width: 100%;
    height: 27.9487179487vw;
  }
}

@media (max-width: 767px) {
  .worries-col:nth-child(even) .worries-bubble {
    order: 2;
  }
}

.worries-bubble__inner {
  color: #fff;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 2;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .worries-bubble__inner {
    font-size: 1.40625vw;
  }
}
@media (max-width: 767px) {
  .worries-bubble__inner {
    font-size: 3.5897435897vw;
    line-height: 1.5;
  }
}

.worries-bubble__inner strong {
  font-size: 22px;
  font-weight: 700;
  line-height: 100%;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .worries-bubble__inner strong {
    font-size: 1.71875vw;
  }
}
@media (max-width: 767px) {
  .worries-bubble__inner strong {
    font-size: 4.6153846154vw;
    line-height: 1.5;
  }
}

.worries-bubble__count {
  font-family: "din-2014", sans-serif;
  color: #4fe24c;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  position: absolute;
  top: -10px;
  right: 16px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .worries-bubble__count {
    font-size: 2.34375vw;
    top: -0.78125vw;
    right: 1.25vw;
  }
}
@media (max-width: 767px) {
  .worries-bubble__count {
    font-size: 6.1538461538vw;
    top: -2.5641025641vw;
    left: unset;
    right: 2.5641025641vw;
  }
}

.worries-col:nth-child(1) .worries-bubble__img {
  width: 116px;
  height: 166px;
  position: absolute;
  top: 14px;
  left: -51px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .worries-col:nth-child(1) .worries-bubble__img {
    width: 9.0625vw;
    height: 12.96875vw;
    top: 1.09375vw;
    left: -3.984375vw;
  }
}
@media (max-width: 767px) {
  .worries-col:nth-child(1) .worries-bubble__img {
    width: 17.4358974359vw;
    height: 30.7692307692vw;
    top: 2.0512820513vw;
    left: -1.0256410256vw;
  }
}

.worries-col:nth-child(2) .worries-bubble__img {
  width: 110px;
  height: 166px;
  position: absolute;
  top: 14px;
  left: -24px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .worries-col:nth-child(2) .worries-bubble__img {
    width: 8.59375vw;
    height: 12.96875vw;
    top: 1.09375vw;
    left: -1.875vw;
  }
}
@media (max-width: 767px) {
  .worries-col:nth-child(2) .worries-bubble__img {
    width: 21.2820512821vw;
    height: 32.3076923077vw;
    top: 2.0512820513vw;
    left: unset;
    right: -1.5384615385vw;
  }
}

@media (max-width: 767px) {
  .worries-col:nth-child(2) .worries-bubble__count {
    left: 2.5641025641vw;
    right: unset;
  }
}

.relay-arrow {
  width: 100%;
  margin: 20px 0;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .relay-arrow {
    margin: 1.5625vw 0;
  }
}
@media (max-width: 767px) {
  .relay-arrow {
    margin: 5.1282051282vw 0;
  }
}

.relay-arrow-img1 {
  display: block;
  width: 100px;
  height: 76px;
  margin: 0 auto;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .relay-arrow-img1 {
    width: 7.8125vw;
    height: 5.9375vw;
  }
}
@media (max-width: 767px) {
  .relay-arrow-img1 {
    width: 12.8205128205vw;
    height: 9.7435897436vw;
  }
}

.relay-arrow-img2 {
  display: block;
  width: 26px;
  height: 68px;
  margin: 0 auto;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .relay-arrow-img2 {
    width: 2.03125vw;
    height: 5.3125vw;
  }
}
@media (max-width: 767px) {
  .relay-arrow-img2 {
    width: 5.641025641vw;
    height: 12.8205128205vw;
  }
}

.introduction {
  background-color: #e9ecec;
  padding-bottom: 100px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction {
    padding-bottom: 7.8125vw;
  }
}
@media (max-width: 767px) {
  .introduction {
    padding-bottom: 12.8205128205vw;
  }
}

.introduction-heading {
  text-align: center;
}

.introduction-heading-sub {
  color: #00be2c;
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  display: block;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-heading-sub {
    font-size: 2.03125vw;
  }
}
@media (max-width: 767px) {
  .introduction-heading-sub {
    font-size: 3.5897435897vw;
    line-height: 1;
  }
}

.introduction-heading-main {
  color: #00be2c;
  font-size: 46px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  margin-top: 24px;
  display: inline-block;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-heading-main {
    margin-top: 1.875vw;
    font-size: 3.59375vw;
  }
}
@media (max-width: 767px) {
  .introduction-heading-main {
    margin-top: 1.5384615385vw;
    font-size: 6.6666666667vw;
    line-height: 1.3;
  }
}

.introduction-heading2 {
  margin-top: 50px;
  text-align: center;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-heading2 {
    margin-top: 3.90625vw;
  }
}
@media (max-width: 767px) {
  .introduction-heading2 {
    margin-top: 5.3333333333vw;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

.introduction-heading2::before,
.introduction-heading2::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 14px;
  background-image: url("/content_assets/56px3/img/introduction-heading2-ornament.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-heading2::before,
  .introduction-heading2::after {
    width: 1.875vw;
    height: 1.09375vw;
  }
}
@media (max-width: 767px) {
  .introduction-heading2::before,
  .introduction-heading2::after {
    width: 5.8666666667vw;
    height: 3.2vw;
  }
}

.introduction-heading2::after {
  transform: scale(-1, 1);
}

.introduction-heading2-text {
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  color: #1e1f25;
  padding: 0 8px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-heading2-text {
    font-size: 2.03125vw;
    padding: 0 0.625vw;
  }
}
@media (max-width: 767px) {
  .introduction-heading2-text {
    font-size: 3.7333333333vw;
    padding: 0 2.1333333333vw;
    display: inline-block;
  }
}

@media (max-width: 767px) {
  .introduction-heading2-text span {
    font-size: 5.3333333333vw;
    margin-top: 2.1333333333vw;
    display: inline-block;
  }
}

.introduction-comment {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-comment {
    max-width: 76.5625vw;
  }
}
.introduction-comment {
  margin: 40px auto 0;
  display: flex;
  justify-content: space-between;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-comment {
    margin: 3.125vw auto 0;
  }
}
@media (max-width: 767px) {
  .introduction-comment {
    display: block;
    width: calc(100% - 10.6666666667vw);
    margin: 5.3333333333vw 5.3333333333vw 0;
  }
}

.introduction-comment-col {
  width: 466px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-comment-col {
    width: 36.40625vw;
  }
}
@media (max-width: 767px) {
  .introduction-comment-col {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .introduction-comment-col + .introduction-comment-col {
    margin-top: 5.3333333333vw;
  }
}

.introduction-comment-col__heading {
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  color: #fff;
  background: #1e1f25;
  border-radius: 6px 6px 0 0;
  position: relative;
  padding: 12px 0 13px 0;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-comment-col__heading {
    font-size: 1.40625vw;
    border-radius: 0.46875vw 0.46875vw 0 0;
    padding: 0.9375vw 0 1.015625vw 0;
  }
}
@media (max-width: 767px) {
  .introduction-comment-col__heading {
    font-size: 3.7333333333vw;
    border-radius: 1.0666666667vw 1.0666666667vw 0 0;
    padding: 3.2vw 0;
  }
}

.introduction-comment-col__heading::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  background-image: url("/content_assets/56px3/img/introduction-flag.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-comment-col__heading::before {
    width: 2.34375vw;
    height: 2.34375vw;
  }
}
@media (max-width: 767px) {
  .introduction-comment-col__heading::before {
    width: 5.8666666667vw;
    height: 5.8666666667vw;
  }
}

.introduction-comment-col__heading strong {
  font-size: 23px;
  font-weight: 900;
  color: #4fe24c;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-comment-col__heading strong {
    font-size: 1.796875vw;
  }
}
@media (max-width: 767px) {
  .introduction-comment-col__heading strong {
    font-size: 4.8vw;
  }
}

@media (max-width: 767px) {
  .introduction-comment-col__heading strong span {
    font-size: 3.7333333333vw;
  }
}

.introduction-comment-detail {
  background-color: #fff;
  padding: 22px 20px 26px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-comment-detail {
    padding: 1.71875vw 1.5625vw 2.03125vw;
  }
}
@media (max-width: 767px) {
  .introduction-comment-detail {
    padding: 2.6666666667vw 4.2666666667vw 4.2666666667vw;
  }
}

.introduction-comment-detail__box {
  display: flex;
  gap: 11px;
  align-items: center;
  justify-content: center;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-comment-detail__box {
    gap: 0.859375vw;
  }
}

.introduction-comment-detail__col:nth-child(1) {
  width: 108px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-comment-detail__col:nth-child(1) {
    width: 8.4375vw;
  }
}
@media (max-width: 767px) {
  .introduction-comment-detail__col:nth-child(1) {
    width: 37.6vw;
  }
}

.introduction-comment-detail__col:nth-child(2) {
  width: calc(100% - 119px);
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-comment-detail__col:nth-child(2) {
    width: calc(100% - 9.296875vw);
  }
}
@media (max-width: 767px) {
  .introduction-comment-detail__col:nth-child(2) {
    width: calc(100% - 41.3333333333vw);
  }
}

.introduction-comment-detail__img {
  width: 108px;
  height: 108px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-comment-detail__img {
    width: 8.4375vw;
    height: 8.4375vw;
  }
}
@media (max-width: 767px) {
  .introduction-comment-detail__img {
    width: 37.6vw;
    height: 22.4vw;
  }
}

.introduction-comment-detail__heading {
  background: #b6f1b5;
  width: 100%;
  text-align: center;
  padding: 9px 0 10px 0;
  color: #1db01a;
  font-size: 12px;
  line-height: 1;
  position: relative;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-comment-detail__heading {
    padding: 0.703125vw 0 0.78125vw 0;
    font-size: 0.9375vw;
  }
}
@media (max-width: 767px) {
  .introduction-comment-detail__heading {
    padding: 1.8666666667vw 0 2.4vw 0;
    font-size: 3.2vw;
    line-height: 1.3;
    margin-top: -1px;
  }
}

.introduction-comment-detail__heading::before {
  content: "";
  display: inline-block;
  width: 38.5px;
  height: 19px;
  background-image: url("/content_assets/56px3/img/introduction-icon-bubble.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: calc(100% - 10px);
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-comment-detail__heading::before {
    width: 3.0078125vw;
    height: 1.484375vw;
    right: calc(100% - 0.78125vw);
  }
}
@media (max-width: 767px) {
  .introduction-comment-detail__heading::before {
    display: none;
  }
}

.introduction-comment-detail__heading strong {
  font-size: 16px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-comment-detail__heading strong {
    font-size: 1.25vw;
  }
}
@media (max-width: 767px) {
  .introduction-comment-detail__heading strong {
    font-size: 3.7333333333vw;
  }
}

.introduction-comment-detail__beforeafter {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 6px;
  padding: 0 3px;
  margin-top: 11px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-comment-detail__beforeafter {
    gap: 0.46875vw;
    padding: 0 0.234375vw;
    margin-top: 0.859375vw;
  }
}
@media (max-width: 767px) {
  .introduction-comment-detail__beforeafter {
    display: block;
  }
}

@media (max-width: 767px) {
  .introduction-comment-detail__before-inner {
    display: flex;
    justify-content: center;
    gap: 1.8666666667vw;
  }
}

.introduction-comment-detail__before-heading {
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  color: #888a96;
  padding: 3px 13px 4px;
  background: #dadee0;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-comment-detail__before-heading {
    font-size: 1.09375vw;
    padding: 0.234375vw 1.015625vw 0.3125vw;
  }
}
@media (max-width: 767px) {
  .introduction-comment-detail__before-heading {
    font-size: 3.2vw;
    padding: 1.0666666667vw;
    writing-mode: vertical-rl;
    margin: unset;
    position: relative;
  }
}

@media (max-width: 767px) {
  .introduction-comment-detail__before-heading::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 100%;
    margin-top: -1.0666666667vw;
    border: 1.0666666667vw solid transparent;
    border-left: 1.6vw solid #dadee0;
  }
}

.introduction-comment-detail__before-income {
  display: flex;
  gap: 3px;
  align-items: baseline;
  margin-top: 8px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-comment-detail__before-income {
    gap: 0.234375vw;
    margin-top: 0.625vw;
  }
}
@media (max-width: 767px) {
  .introduction-comment-detail__before-income {
    justify-content: center;
  }
}

.introduction-comment-detail__before-income-title {
  writing-mode: vertical-rl;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  color: #888a96;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-comment-detail__before-income-title {
    font-size: 1.09375vw;
  }
}
@media (max-width: 767px) {
  .introduction-comment-detail__before-income-title {
    font-size: 3.2vw;
  }
}

.introduction-comment-detail__before-income-value {
  font-family: "din-2014", sans-serif;
  font-size: 42px;
  font-weight: 800;
  line-height: 0.7;
  letter-spacing: -0.03em;
  color: #888a96;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-comment-detail__before-income-value {
    font-size: 3.28125vw;
  }
}
@media (max-width: 767px) {
  .introduction-comment-detail__before-income-value {
    font-size: 10.6666666667vw;
  }
}

.introduction-comment-detail__before-income-unit {
  writing-mode: vertical-rl;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  color: #888a96;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-comment-detail__before-income-unit {
    font-size: 1.09375vw;
  }
}
@media (max-width: 767px) {
  .introduction-comment-detail__before-income-unit {
    font-size: 3.4666666667vw;
  }
}

.introduction-comment-detail__after {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .introduction-comment-detail__after {
    display: block;
  }
}

.introduction-comment-detail__after::before {
  content: "";
  display: inline-block;
  width: 41px;
  height: 38px;
  background-image: url("/content_assets/56px3/img/introduction-ba-arrow.png");
  background-repeat: no-repeat;
  background-size: contain;
  padding-right: 8px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-comment-detail__after::before {
    width: 3.203125vw;
    height: 2.96875vw;
    padding-right: 0.625vw;
  }
}
@media (max-width: 767px) {
  .introduction-comment-detail__after::before {
    background-image: url("/content_assets/56px3/img/introduction-ba-arrow_sp.png");
    width: 14.9333333333vw;
    height: 5.3333333333vw;
    padding-right: unset;
    display: block;
    margin: 1.0666666667vw auto 1.6vw;
  }
}

.introduction-comment-detail__after-inner {
  width: calc(100% - 49px);
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-comment-detail__after-inner {
    width: calc(100% - 3.828125vw);
  }
}
@media (max-width: 767px) {
  .introduction-comment-detail__after-inner {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 1.8666666667vw;
  }
}

.introduction-comment-detail__after-heading {
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  color: #ffffff;
  padding: 3px 13px 4px;
  background: #42d53f;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-comment-detail__after-heading {
    font-size: 1.09375vw;
    padding: 0.234375vw 1.015625vw 0.3125vw;
  }
}
@media (max-width: 767px) {
  .introduction-comment-detail__after-heading {
    font-size: 3.2vw;
    padding: 0.8vw;
    writing-mode: vertical-rl;
    margin: unset;
    position: relative;
  }
}

@media (max-width: 767px) {
  .introduction-comment-detail__after-heading::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 100%;
    margin-top: -1.0666666667vw;
    border: 1.0666666667vw solid transparent;
    border-left: 1.6vw solid #42d53f;
  }
}

.introduction-comment-detail__after-income {
  display: flex;
  align-items: flex-end;
  margin-top: 6px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-comment-detail__after-income {
    margin-top: 0.46875vw;
  }
}

.introduction-comment-detail__after-income-title {
  writing-mode: vertical-rl;
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
  color: #33353e;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-comment-detail__after-income-title {
    font-size: 1.25vw;
  }
}
@media (max-width: 767px) {
  .introduction-comment-detail__after-income-title {
    font-size: 3.2vw;
  }
}

.introduction-comment-detail__after-income-value {
  font-family: "din-2014", sans-serif;
  font-size: 66px;
  font-weight: 800;
  line-height: 0.7;
  letter-spacing: -0.03em;
  color: #33353e;
  transform: translateY(1px);
  margin: 0 3px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-comment-detail__after-income-value {
    font-size: 5.15625vw;
    margin: 0 0.234375vw;
  }
}
@media (max-width: 767px) {
  .introduction-comment-detail__after-income-value {
    font-size: 14.9333333333vw;
    margin: 0 0.8vw;
  }
}

.introduction-comment-detail__after-income-unit {
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
  color: #33353e;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-comment-detail__after-income-unit {
    font-size: 1.5625vw;
  }
}
@media (max-width: 767px) {
  .introduction-comment-detail__after-income-unit {
    font-size: 4.2666666667vw;
  }
}

.introduction-comment-col__textarea {
  background: #dadee0;
  padding: 12px 16px;
  border-radius: 0 0 6px 6px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-comment-col__textarea {
    padding: 0.9375vw 1.25vw;
    border-radius: 0 0 0.46875vw 0.46875vw;
  }
}
@media (max-width: 767px) {
  .introduction-comment-col__textarea {
    padding: 3.2vw 4.2666666667vw;
    border-radius: 0 0 1.0666666667vw 1.0666666667vw;
  }
}

.introduction-comment-col__text {
  font-size: 15px;
  font-weight: 700;
  line-height: 2.1;
  text-align: left;
  color: #33353e;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-comment-col__text {
    font-size: 1.171875vw;
  }
}
@media (max-width: 767px) {
  .introduction-comment-col__text {
    font-size: 3.7333333333vw;
  }
}

.introduction-comment-col__text strong {
  background: linear-gradient(transparent 20%, #8af188 20%);
}

.introduction-comment-col__notice {
  font-size: 10px;
  font-weight: 400;
  line-height: 1;
  text-align: right;
  color: #999999;
  margin-top: 10px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-comment-col__notice {
    font-size: 0.78125vw;
    margin-top: 0.78125vw;
  }
}
@media (max-width: 767px) {
  .introduction-comment-col__notice {
    font-size: 2.6666666667vw;
    margin-top: 2.1333333333vw;
  }
}

.introduction-relay-arrow {
  margin: 0 auto 25px;
  transform: translateY(-38px);
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-relay-arrow {
    transform: translateY(-2.96875vw);
    margin: 0 auto 1.953125vw;
  }
}
@media (max-width: 767px) {
  .introduction-relay-arrow {
    transform: translateY(-4.8717948718vw);
    margin: 0 auto 3.0769230769vw;
  }
}

.introduction-btn-box {
  margin-top: 40px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-btn-box {
    margin-top: 3.125vw;
  }
}
@media (max-width: 767px) {
  .introduction-btn-box {
    margin-top: 5.3333333333vw;
  }
}
.introduction-btn-box .introduction-btn-box-copy {
  display: none;
}
@media (max-width: 767px) {
  .introduction-btn-box .introduction-btn-box-copy {
    display: block;
    margin: 0 auto 2.6666666667vw;
    width: calc(100% - 22.4vw);
  }
}
.introduction-btn-box .introduction-btn-box-caption {
  display: none;
}
@media (max-width: 767px) {
  .introduction-btn-box .introduction-btn-box-caption {
    color: #999;
    display: block;
    font-size: 10px;
    text-align: right;
    margin: 1.6vw 5.3333333333vw 0 0;
  }
}

.introduction-btn {
  margin: 0 auto;
}

.example {
  padding: 80px 0;
  background-color: #dadee0;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .example {
    padding: 6.25vw 0;
  }
}
@media (max-width: 767px) {
  .example {
    padding: 10.6666666667vw 0;
  }
}

.example-heading {
  color: #1e1f25;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .example-heading {
    font-size: 3.125vw;
  }
}
@media (max-width: 767px) {
  .example-heading {
    font-size: 6.1538461538vw;
  }
}

.example-slider {
  margin-top: 40px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .example-slider {
    margin-top: 3.125vw;
  }
}
@media (max-width: 767px) {
  .example-slider {
    margin-top: 5.1282051282vw;
    margin-bottom: 2.5641025641vw !important;
  }
}

.example-slider .slick-track {
  display: flex;
}

.example-slider .slick-slide {
  background-color: #c5cacf;
  height: auto !important;
  border-radius: 4px;
}

.example-slider-col {
  width: 346px;
  margin: 0 12px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .example-slider-col {
    width: 27.03125vw;
    margin: 0 0.9375vw;
  }
}
@media (max-width: 767px) {
  .example-slider-col {
    width: 75.641025641vw;
    margin: 0 2.5641025641vw;
  }
}

.example-slider-col__income {
  border-radius: 3px;
  background: #61656f;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  margin: 14px 20px 20px;
  height: 60px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .example-slider-col__income {
    margin: 1.09375vw 1.5625vw 1.5625vw;
    height: 4.6875vw;
  }
}
@media (max-width: 767px) {
  .example-slider-col__income {
    margin: 2.8205128205vw 4.358974359vw 4.358974359vw;
    height: 13.0769230769vw;
  }
}

.example-slider-col__income-title {
  border-radius: 3px 0 0 3px;
  background: #1e1f25;
  display: flex;
  align-items: center;
  justify-content: center;
  writing-mode: vertical-rl;
}

.example-slider-col__income-title span {
  font-family: "Yu Gothic StdN E", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 100%;
  padding: 0 7px;
  color: #4fe24c;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .example-slider-col__income-title span {
    font-size: 1.25vw;
    padding: 0 0.546875vw;
  }
}
@media (max-width: 767px) {
  .example-slider-col__income-title span {
    font-size: 3.3333333333vw;
    padding: 0 1.2820512821vw;
  }
}

.example-slider-col__income-band {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.example-slider-col__income-omission {
  color: #fff;
  font-family: "din-2014", sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 30%;
  display: inline-block;
  margin-left: 3px;
  margin-right: 3px;
  transform: translateY(-5px);
}
@media (min-width: 767px) and (max-width: 1280px) {
  .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-slider-col__income-omission {
    font-size: 5.641025641vw;
    margin-left: 0.7692307692vw;
    margin-right: 0.7692307692vw;
    transform: translateY(-1.2820512821vw);
  }
}

.example-slider-col__income-number {
  color: #fff;
  font-family: "din-2014", sans-serif;
  font-size: 44px;
  font-weight: 700;
  line-height: 1;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .example-slider-col__income-number {
    font-size: 3.4375vw;
  }
}
@media (max-width: 767px) {
  .example-slider-col__income-number {
    font-size: 9.6153846154vw;
  }
}

.example-slider-col__income-unit {
  font-family: "Yu Gothic StdN E", sans-serif;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .example-slider-col__income-unit {
    font-size: 1.40625vw;
  }
}
@media (max-width: 767px) {
  .example-slider-col__income-unit {
    font-size: 3.8461538462vw;
  }
}

.example-slider-col__company-name {
  color: #4fe24c;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  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-color: #1e1f25;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .example-slider-col__company-name {
    height: 4.375vw;
    font-size: 1.5625vw;
  }
}
@media (max-width: 767px) {
  .example-slider-col__company-name {
    height: 12.3076923077vw;
    font-size: 4.358974359vw;
  }
}

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

.example-slider-col__img-area {
  width: 100%;
}

.example-slider-col__img {
  width: 100%;
  height: auto;
}

.example-slider-col__detail {
  padding: 20px 20px 0 20px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .example-slider-col__detail {
    padding: 1.5625vw 1.5625vw 0 1.5625vw;
  }
}
@media (max-width: 767px) {
  .example-slider-col__detail {
    padding: 4.358974359vw 4.358974359vw 0 4.358974359vw;
  }
}

.example-slider-col__detail-title {
  color: #1d1e24;
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  padding-bottom: 16px;
  border-bottom: 1px solid #727272;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .example-slider-col__detail-title {
    font-size: 1.71875vw;
    padding-bottom: 1.25vw;
  }
}
@media (max-width: 767px) {
  .example-slider-col__detail-title {
    font-size: 4.6153846154vw;
    padding-bottom: 3.3333333333vw;
  }
}

.example-slider-col__detail-inner {
  padding-top: 14px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .example-slider-col__detail-inner {
    padding-top: 1.09375vw;
  }
}
@media (max-width: 767px) {
  .example-slider-col__detail-inner {
    padding-top: 2.9487179487vw;
  }
}

.example-slider-col__detail-list-item {
  color: #1d1e24;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .example-slider-col__detail-list-item {
    font-size: 1.171875vw;
  }
}
@media (max-width: 767px) {
  .example-slider-col__detail-list-item {
    font-size: 3.3333333333vw;
  }
}

.example-slider-col__detail-list-item::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url("/content_assets/56px3/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-slider-col__detail-list-item::before {
    width: 1.25vw;
    height: 1.25vw;
    margin-right: 0.390625vw;
  }
}
@media (max-width: 767px) {
  .example-slider-col__detail-list-item::before {
    width: 3.3333333333vw;
    height: 3.3333333333vw;
    margin-right: 1.0256410256vw;
  }
}

.example-slider-col__detail-list-item + .example-slider-col__detail-list-item {
  margin-top: 6px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .example-slider-col__detail-list-item + .example-slider-col__detail-list-item {
    margin-top: 0.46875vw;
  }
}
@media (max-width: 767px) {
  .example-slider-col__detail-list-item + .example-slider-col__detail-list-item {
    margin-top: 1.2820512821vw;
  }
}

.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-slider__notice {
    font-size: 0.78125vw;
    margin-top: 0.78125vw;
  }
}
@media (max-width: 767px) {
  .example-slider__notice {
    font-size: 2.5641025641vw;
    margin-top: 2.5641025641vw;
  }
}

.example-slider-custom-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.example-slider-custom-dots {
  position: relative;
  height: 4px;
  max-width: 240px;
  background-color: #1e1f25;
  flex-grow: 1;
  cursor: pointer;
  overflow: hidden;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .example-slider-custom-dots {
    max-width: 18.75vw;
    height: 0.3125vw;
  }
}
@media (max-width: 767px) {
  .example-slider-custom-dots {
    max-width: 41.0256410256vw;
    height: 1.0256410256vw;
  }
}

.example-slider-custom-dots .example-slider-custom-dot-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background-color: #fff;
  transition: left 0.3s ease; /* Reduce transition time */
}

.example-slider-custom-arrow {
  width: 44px;
  height: 44px;
  background-image: url("/content_assets/56px3/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-slider-custom-arrow {
    width: 3.125vw;
    height: 3.125vw;
  }
}
@media (max-width: 767px) {
  .example-slider-custom-arrow {
    width: 11.2820512821vw;
    height: 11.2820512821vw;
  }
}

.example-slider-custom-arrow:hover {
  opacity: 0.7;
}

.example-slider-custom-prev {
  order: -1;
  margin-right: 15px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .example-slider-custom-prev {
    margin-right: 1.171875vw;
  }
}
@media (max-width: 767px) {
  .example-slider-custom-prev {
    margin-right: 3.8461538462vw;
  }
}

.example-slider-custom-next {
  margin-left: 15px;
  transform: rotate(180deg);
}
@media (min-width: 767px) and (max-width: 1280px) {
  .example-slider-custom-next {
    margin-left: 1.171875vw;
  }
}
@media (max-width: 767px) {
  .example-slider-custom-next {
    margin-left: 3.8461538462vw;
  }
}

.example-slider-custom-dots-container {
  display: flex;
  align-items: center;
}

.example-slider-custom-dots-container .slick-dots {
  display: flex;
  align-items: center;
  position: static;
}
@media (max-width: 767px) {
  .example-slider-custom-dots-container .slick-dots {
    transform: translateY(-0.5128205128vw);
  }
}

.example-slider-custom-dots-container .slick-dots li {
  width: 12px;
  height: 14px;
  margin: 0 5px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .example-slider-custom-dots-container .slick-dots li {
    width: 0.9375vw;
    height: 1.09375vw;
    margin: 0 0.390625vw;
  }
}
@media (max-width: 767px) {
  .example-slider-custom-dots-container .slick-dots li {
    width: 2.5641025641vw;
    height: 3.0769230769vw;
    margin: 0 1.2820512821vw;
  }
}

.example-slider-custom-dots-container .slick-dots li button {
  width: 12px;
  height: 14px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .example-slider-custom-dots-container .slick-dots li button {
    width: 0.9375vw;
    height: 1.09375vw;
  }
}
@media (max-width: 767px) {
  .example-slider-custom-dots-container .slick-dots li button {
    width: 2.5641025641vw;
    height: 3.0769230769vw;
  }
}

.example-slider-custom-dots-container .slick-dots li button:before {
  width: 12px;
  height: 14px;
  font-size: 12px;
  color: #1e1f25;
  opacity: 0.3;
  transition: all ease-in 0.2s;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .example-slider-custom-dots-container .slick-dots li button:before {
    width: 0.9375vw;
    height: 1.09375vw;
    font-size: 0.9375vw;
  }
}
@media (max-width: 767px) {
  .example-slider-custom-dots-container .slick-dots li button:before {
    width: 2.5641025641vw;
    height: 3.0769230769vw;
    font-size: 2.5641025641vw;
  }
}

.example-slider-custom-dots-container .slick-dots li.slick-active button:before {
  color: #d9d9d9;
}

.example-btn-box {
  margin-top: 40px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .example-btn-box {
    margin-top: 3.125vw;
  }
}
@media (max-width: 767px) {
  .example-btn-box {
    margin-top: 5.1282051282vw;
  }
}

.example-btn {
  margin: 0 auto;
}

.probrem {
  padding: 80px 0 120px;
  background-color: #8d8f98;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .probrem {
    padding: 6.25vw 0 9.375vw;
  }
}
@media (max-width: 767px) {
  .probrem {
    padding: 12.8205128205vw 0;
  }
}

.probrem-heading {
  color: #fff;
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .probrem-heading {
    font-size: 2.1875vw;
  }
}
@media (max-width: 767px) {
  .probrem-heading {
    font-size: 5.1282051282vw;
  }
}

.probrem-box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  margin-top: 80px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .probrem-box {
    gap: 4.6875vw;
    margin-top: 6.25vw;
  }
}
@media (max-width: 767px) {
  .probrem-box {
    display: block;
    gap: 6.4102564103vw;
    margin: 10.2564102564vw 5.1282051282vw 0 5.1282051282vw;
  }
}

.probrem-bubble {
  width: 466px;
  height: 146px;
  background: #1e1f25;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .probrem-bubble {
    width: 36.40625vw;
    height: 11.40625vw;
  }
}
@media (max-width: 767px) {
  .probrem-bubble {
    width: 100%;
    height: 27.9487179487vw;
  }
}

.probrem-bubble__inner {
  color: #fff;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.8;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .probrem-bubble__inner {
    font-size: 1.40625vw;
  }
}
@media (max-width: 767px) {
  .probrem-bubble__inner {
    font-size: 3.5897435897vw;
    line-height: 1.5;
  }
}

.probrem-bubble__inner strong {
  font-size: 22px;
  font-weight: 700;
  line-height: 100%;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .probrem-bubble__inner strong {
    font-size: 1.71875vw;
  }
}
@media (max-width: 767px) {
  .probrem-bubble__inner strong {
    font-size: 4.6153846154vw;
    line-height: 1.5;
  }
}

.probrem-bubble__count {
  font-family: "din-2014", sans-serif;
  color: #4fe24c;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  position: absolute;
  top: -10px;
  left: 16px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .probrem-bubble__count {
    font-size: 2.34375vw;
    top: -0.78125vw;
    left: 1.25vw;
  }
}
@media (max-width: 767px) {
  .probrem-bubble__count {
    top: -2.5641025641vw;
    left: unset;
    right: 2.5641025641vw;
    font-size: 6.1538461538vw;
  }
}

@media (max-width: 767px) {
  .probrem-col + .probrem-col {
    margin-top: 7.6923076923vw;
  }
}

.probrem-col:nth-child(1) .probrem-bubble__img {
  width: 100px;
  height: 157px;
  position: absolute;
  bottom: -47px;
  right: -24px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .probrem-col:nth-child(1) .probrem-bubble__img {
    width: 7.8125vw;
    height: 12.265625vw;
    bottom: -3.671875vw;
    right: -1.875vw;
  }
}
@media (max-width: 767px) {
  .probrem-col:nth-child(1) .probrem-bubble__img {
    width: 18.7179487179vw;
    height: 30.7692307692vw;
    bottom: -5.1282051282vw;
    right: unset;
    left: 2.3076923077vw;
  }
}

.probrem-col:nth-child(2) .probrem-bubble__img {
  width: 95px;
  height: 166px;
  position: absolute;
  bottom: -57px;
  right: -24px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .probrem-col:nth-child(2) .probrem-bubble__img {
    width: 7.421875vw;
    height: 12.96875vw;
    bottom: -4.453125vw;
    right: -1.875vw;
  }
}
@media (max-width: 767px) {
  .probrem-col:nth-child(2) .probrem-bubble__img {
    width: 17.4358974359vw;
    height: 30.7692307692vw;
    bottom: -4.8717948718vw;
    right: -2.8205128205vw;
  }
}

@media (max-width: 767px) {
  .probrem-col:nth-child(2) .probrem-bubble__count {
    left: 2.5641025641vw;
    right: unset;
  }
}

.support {
  background-color: #e9ecec;
}

.support-heading {
  text-align: center;
}

.support-heading-sub {
  color: #00be2c;
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  display: block;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support-heading-sub {
    font-size: 2.03125vw;
  }
}
@media (max-width: 767px) {
  .support-heading-sub {
    font-size: 4.1025641026vw;
    line-height: 1.8;
  }
}

.support-heading-main {
  color: #00be2c;
  font-size: 46px;
  font-weight: 700;
  line-height: 1;
  margin-top: 24px;
  display: inline-block;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support-heading-main {
    margin-top: 1.875vw;
    font-size: 3.59375vw;
  }
}
@media (max-width: 767px) {
  .support-heading-main {
    margin-top: 0.5128205128vw;
    font-size: 6.6666666667vw;
    line-height: 1.3;
  }
}

.support-relay-arrow1 {
  margin: 0 auto 25px;
  transform: translateY(-38px);
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support-relay-arrow1 {
    transform: translateY(-2.96875vw);
    margin: 0 auto 1.953125vw;
  }
}
@media (max-width: 767px) {
  .support-relay-arrow1 {
    transform: translateY(-4.8717948718vw);
    margin: 0 auto 3.0769230769vw;
  }
}

.support-relay-arrow2 {
  margin: 50px auto 0;
  padding-bottom: 40px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support-relay-arrow2 {
    margin: 3.90625vw auto 0;
    padding-bottom: 3.125vw;
  }
}
@media (max-width: 767px) {
  .support-relay-arrow2 {
    margin: 6.6666666667vw auto 0;
    padding-bottom: 4.1025641026vw;
  }
}

.support-box {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support-box {
    max-width: 76.5625vw;
  }
}
.support-box {
  display: flex;
  gap: 40px;
  justify-content: space-between;
  margin-top: 60px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support-box {
    gap: 3.125vw;
    margin-top: 4.6875vw;
  }
}
@media (max-width: 767px) {
  .support-box {
    display: block;
    margin-top: 7.6923076923vw;
  }
}

@media (max-width: 767px) {
  .support-col + .support-col {
    margin-top: 7.6923076923vw;
  }
}

@media (max-width: 767px) {
  .support-col:nth-child(2) {
    margin-top: 7.6923076923vw;
  }
}

.support-col__inner {
  width: 300px;
  position: relative;
  background-color: #33353e;
  border-radius: 4px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support-col__inner {
    width: 23.4375vw;
  }
}
@media (max-width: 767px) {
  .support-col__inner {
    width: calc(100% - 10.2564102564vw);
    margin: 0 5.1282051282vw;
  }
}

.support-col__title {
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support-col__title {
    height: 6.71875vw;
  }
}
@media (max-width: 767px) {
  .support-col__title {
    height: 24.6153846154vw;
  }
}

.support-col__title-inner {
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support-col__title-inner {
    font-size: 1.25vw;
  }
}
@media (max-width: 767px) {
  .support-col__title-inner {
    font-size: 4.6153846154vw;
  }
}

.support-col__title-inner span {
  font-size: 20px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support-col__title-inner span {
    font-size: 1.5625vw;
  }
}
@media (max-width: 767px) {
  .support-col__title-inner span {
    font-size: 5.1282051282vw;
  }
}

.support-col__border {
  margin: 0 36px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support-col__border {
    margin: 0 2.8125vw;
  }
}
@media (max-width: 767px) {
  .support-col__border {
    margin: 0 13.3333333333vw;
  }
}

.support-col__textarea {
  text-align: center;
  height: 174px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support-col__textarea {
    height: 13.59375vw;
  }
}
@media (max-width: 767px) {
  .support-col__textarea {
    height: 36.4102564103vw;
  }
}

.support-col__textarea1 {
  background-image: url("/content_assets/56px3/img/support-col__text1-bg.png");
  background-repeat: no-repeat;
  background-size: 94px 101px;
  background-position: right 23px top 11px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support-col__textarea1 {
    background-size: 7.34375vw 7.890625vw;
    background-position: right 1.796875vw center 0.859375vw;
  }
}
@media (max-width: 767px) {
  .support-col__textarea1 {
    background-image: url("/content_assets/56px3/img/support-col__text1-bg_sp.png");
    background-size: 21.5384615385vw 27.6923076923vw;
    background-position: right 10.2564102564vw top 2.0512820513vw;
  }
}

.support-col__text1 {
  color: #4fe24c;
  font-size: 29px;
  font-weight: 700;
  line-height: 80%;
  letter-spacing: -0.58px;
  transform: translateY(-20%);
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support-col__text1 {
    font-size: 2.265625vw;
  }
}
@media (max-width: 767px) {
  .support-col__text1 {
    font-size: 7.1794871795vw;
    line-height: 1;
    transform: translateY(-26%);
  }
}

.support-col__text1 strong {
  font-family: "din-2014", sans-serif;
  font-size: 100px;
  letter-spacing: -2px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support-col__text1 strong {
    font-size: 7.8125vw;
  }
}
@media (max-width: 767px) {
  .support-col__text1 strong {
    font-size: 20.5128205128vw;
  }
}

.support-col__summary {
  background: #a2d7a1;
  width: 226px;
  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-col__summary {
    width: 17.65625vw;
    height: 3.125vw;
  }
}
@media (max-width: 767px) {
  .support-col__summary {
    width: 58.9743589744vw;
    height: 8.7179487179vw;
  }
}

.support-col__summary-text {
  color: #1e1f25;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support-col__summary-text {
    font-size: 1.40625vw;
  }
}
@media (max-width: 767px) {
  .support-col__summary-text {
    font-size: 4.6153846154vw;
    display: flex;
    color: #000;
  }
}

.support-col__summary-text::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  background-image: url("/content_assets/56px3/img/summary-icon-check.svg");
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 6px;
  transform: translateY(2px);
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support-col__summary-text::before {
    width: 1.40625vw;
    height: 1.40625vw;
    margin-right: 0.46875vw;
    transform: translateY(0.15625vw);
  }
}
@media (max-width: 767px) {
  .support-col__summary-text::before {
    width: 4.6153846154vw;
    height: 4.6153846154vw;
    margin-right: 1.5384615385vw;
    transform: translateY(1px);
  }
}

.support-col__notice {
  color: #ccc;
  text-align: center;
  font-size: 10px;
  font-weight: 400;
  line-height: 1;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  transform: translate(0, -50px);
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support-col__notice {
    font-size: 0.78125vw;
    transform: translate(0, -3.90625vw);
  }
}
@media (max-width: 767px) {
  .support-col__notice {
    color: #ccc;
    font-size: 2.5641025641vw;
    transform: translate(0, -9.2307692308vw);
  }
}

.support-col__text2 {
  color: #4fe24c;
  font-size: 18px;
  font-weight: 700;
  line-height: 100%; /* 18px */
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 0 26px;
  transform: translateY(-20px);
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support-col__text2 {
    font-size: 1.40625vw;
    gap: 1.25vw;
    margin: 0 2.03125vw;
    transform: translateY(-1.5625vw);
  }
}
@media (max-width: 767px) {
  .support-col__text2 {
    font-size: 4.6153846154vw;
    gap: 3.5897435897vw;
    margin: 0 14.358974359vw;
    transform: translateY(-3.5897435897vw);
  }
}

.support-col__text2 li {
  list-style-type: disc;
  margin-left: 1.5rem;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support-col__text2 li {
    margin-left: 1.171875vw;
  }
}

.support-col__text2 li::marker {
  color: #fff;
}

.support-col__text3 {
  color: #4fe24c;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 30px */
  transform: translateY(8px);
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support-col__text3 {
    font-size: 1.40625vw;
    transform: translateY(0.625vw);
  }
}
@media (max-width: 767px) {
  .support-col__text3 {
    font-size: 4.1025641026vw;
    transform: translateY(1.2820512821vw);
  }
}

.support-col__img {
  display: block;
  transform: translateY(-17px);
  margin: 0 auto;
  width: 199px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support-col__img {
    width: 15.546875vw;
    transform: translateY(-1.328125vw);
  }
}
@media (max-width: 767px) {
  .support-col__img {
    transform: translateY(-2.5641025641vw);
  }
}

.contact {
  background-color: #e9ecec;
  padding-bottom: 180px;
}
.contact.v2 {
  background-color: #dadee0;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .contact {
    padding-bottom: 14.0625vw;
  }
}
@media (max-width: 767px) {
  .contact {
    padding-bottom: 12.8205128205vw;
  }
}

.contact-box {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .contact-box {
    max-width: 76.5625vw;
  }
}
.contact-box {
  background-color: #4fe24c;
  border-radius: 4px;
  padding-top: 50px;
  padding-bottom: 70px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .contact-box {
    padding-top: 3.90625vw;
    padding-bottom: 5.46875vw;
  }
}
@media (max-width: 767px) {
  .contact-box {
    margin: 0 5.1282051282vw;
    width: calc(100% - 10.2564102564vw);
    padding-top: 6.6666666667vw;
    padding-bottom: 6.6666666667vw;
  }
}

.contact-heading {
  font-weight: 700;
  line-height: 1;
  color: #fff;
  text-align: center;
}

.contact-heading-bubble {
  display: block;
}

.contact-heading-bubble__inner {
  color: #1e1f25;
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
  padding: 8px 18px;
  display: inline-block;
  background-color: #fff;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .contact-heading-bubble__inner {
    font-size: 1.40625vw;
    padding: 0.625vw 1.40625vw;
  }
}
@media (max-width: 767px) {
  .contact-heading-bubble__inner {
    font-size: 3.5897435897vw;
    padding: 1.0256410256vw 2.0512820513vw;
    color: #000;
  }
}

.contact-heading-main {
  color: #1e1f25;
  font-size: 38px;
  font-weight: 900;
  line-height: 1;
  margin-top: 24px;
  display: block;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .contact-heading-main {
    font-size: 2.96875vw;
    margin-top: 1.875vw;
  }
}
@media (max-width: 767px) {
  .contact-heading-main {
    font-size: 6.1538461538vw;
    margin-top: 2.5641025641vw;
  }
}

.contact-text {
  font-size: 20px;
  font-weight: 700;
  margin-top: 24px;
  text-align: center;
  color: #1e1f25;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .contact-text {
    font-size: 1.5625vw;
    margin-top: 1.875vw;
  }
}
@media (max-width: 767px) {
  .contact-text {
    font-size: 4.1025641026vw;
    margin-top: 4.1025641026vw;
  }
}

.contact-btns {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .contact-btns {
    gap: 1.5625vw;
    margin-top: 3.125vw;
  }
}
@media (max-width: 767px) {
  .contact-btns {
    display: block;
    gap: 5.1282051282vw;
    margin-top: 6.1538461538vw;
  }
}

.contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 320px;
  height: 72px;
  position: relative;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  border-radius: 4px;
  background: #1e1f25;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .contact-btn {
    width: 25vw;
    height: 5.625vw;
    font-size: 1.71875vw;
  }
}
@media (max-width: 767px) {
  .contact-btn {
    width: calc(100% - 10.2564102564vw);
    height: 14.358974359vw;
    margin: 0 5.1282051282vw;
    font-size: 4.6153846154vw;
  }
}

@media (max-width: 767px) {
  .contact-btn + .contact-btn {
    margin-top: 2.5641025641vw;
  }
}

.contact-btn::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 14px;
  background-image: url("/content_assets/56px3/img/contact-btn-arrow.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: calc(50% - 7px);
  right: 20px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .contact-btn::after {
    width: 0.78125vw;
    height: 1.09375vw;
    top: calc(50% - 0.546875vw);
    right: 1.5625vw;
  }
}
@media (max-width: 767px) {
  .contact-btn::after {
    width: 2.0512820513vw;
    height: 3.0769230769vw;
    top: calc(50% - 1.5384615385vw);
    right: 4.1025641026vw;
  }
}

.header {
  z-index: 100;
}

.header-btn {
  display: inline-flex;
  justify-content: left;
  width: 225px;
  height: 42px;
  padding: var(--Spacing-Space-4, 4px) var(--Spacing-Space-12, 12px);
  align-items: center;
  gap: var(--Spacing-Space-12, 12px);
  border-radius: 4px;
  background: linear-gradient(91deg, #de0510 7.96%, #c6020a 92.04%);
}
@media (max-width: 767px) {
  .header-btn {
    height: 39px;
    width: 187px;
    padding: 4px;
    background: linear-gradient(91deg, #de0510 7.96%, #c6020a 92.04%), var(--Color-Common-Accent-Default, #eb690c);
    gap: 8px;
    justify-content: left;
    color: var(--Color-Common-Neutral-White, #fff);
    font-family: "Noto Sans JP";
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0.45px;
  }
}
.header-btn img {
  width: auto;
  height: 100%;
}
@media (max-width: 767px) {
  .header-btn img {
    width: 33.666px;
    height: 31px;
  }
}

.header-btn::after {
  position: absolute;
  display: inline-block;
  content: "";
  right: 12px;
  width: 6px;
  height: 10px;
  background-image: url("/content_assets/74dp1/img/right-arrow-10x6.svg");
}
@media (max-width: 767px) {
  .header-btn::after {
    right: 4px;
    width: 6px;
    height: 9px;
    background-image: url("/content_assets/74dp1/img/right-arrow-9x6.svg");
  }
}

.fv {
  background: linear-gradient(90deg, #102868 0%, #012281 10%, #374e92 50%, #012281 90%, #102868 100%);
  overflow: visible;
}

.fv-wrap {
  position: relative;
}

.fv-inner {
  height: 624px;
  max-width: 980px;
  width: 100%;
  position: relative;
  margin: 0 auto;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .fv-inner {
    height: 48.75vw;
  }
}
@media (max-width: 767px) {
  .fv-inner {
    height: 94.4vw;
    transform: unset;
    padding: 5.3333333333vw;
    overflow: hidden;
  }
}

.fv-content {
  position: absolute;
  left: 0px;
  top: 60px;
  z-index: 3;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .fv-content {
    top: 4.6875vw;
  }
}
@media (max-width: 767px) {
  .fv-content {
    top: 5.3333333333vw;
    left: 5.3333333333vw;
  }
}

.fv-main-copy {
  position: relative;
  margin-bottom: 40px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .fv-main-copy {
    margin-bottom: 3.125vw;
  }
}
@media (max-width: 767px) {
  .fv-main-copy {
    margin-bottom: 0;
  }
}
.fv-main-copy .fv-main-copy__line1 {
  position: absolute;
  top: 0;
  left: 74px;
}
.fv-main-copy .fv-main-copy__line1 img {
  width: 560px;
  height: auto;
  aspect-ratio: 560/385.062;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .fv-main-copy .fv-main-copy__line1 img {
    width: 43.75vw;
  }
}
@media (max-width: 767px) {
  .fv-main-copy .fv-main-copy__line1 img {
    width: 57.6vw;
    height: 83.5725333333vw;
    aspect-ratio: 216/313.397;
  }
}
@media (min-width: 767px) and (max-width: 1280px) {
  .fv-main-copy .fv-main-copy__line1 {
    top: 0;
    left: 5.78125vw;
  }
}
@media (max-width: 767px) {
  .fv-main-copy .fv-main-copy__line1 {
    left: 0;
  }
}

.fv-main-copy--strong {
  background: var(--gold_grd, linear-gradient(90deg, #836738 0%, #c5a65d 50%, #836738 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Zen Old Mincho";
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: -0.88px;
}

.fv-bg-person {
  position: absolute;
  bottom: 0;
  left: 605px;
  height: 579px;
  width: auto;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .fv-bg-person {
    left: 47.265625vw;
    height: 45.234375vw;
  }
}
@media (max-width: 767px) {
  .fv-bg-person {
    width: 52.1888vw;
    height: 82.1333333333vw;
    aspect-ratio: 61/96;
    right: 0;
    left: unset;
    bottom: 0;
    z-index: 10;
  }
}

.fv-bizreach-img {
  position: absolute;
  top: 59px;
  left: 856.56px;
  width: 230.3px;
  height: 221px;
  display: block;
  z-index: 10;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .fv-bizreach-img {
    top: 4.609375vw;
    left: 66.91875vw;
    width: 17.9921875vw;
    height: 17.265625vw;
  }
}
@media (max-width: 767px) {
  .fv-bizreach-img {
    width: 66.9333333333vw;
    height: 23.4666666667vw;
    top: 68.8vw;
    left: 5.3333333333vw;
  }
}

.fv-cv-wrap {
  position: absolute;
  z-index: 10;
  width: 100%;
}
.fv-cv-wrap .fv-cv-box {
  position: relative;
  top: -132px;
  width: 830px;
  height: 230px;
  background-color: #fff;
  margin: 0 auto;
  border-radius: var(--Radius-Radius-4, 4px);
  background: #fff;
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.14);
  padding: 40px 55px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .fv-cv-wrap .fv-cv-box {
    border: unset;
    top: -10.3125vw;
    width: 64.84375vw;
  }
}
@media (max-width: 767px) {
  .fv-cv-wrap .fv-cv-box {
    width: 89.3333333333vw;
    margin: auto;
    top: -3.2vw;
    border-radius: var(--Spacing-Space-4, 1.0666666667vw);
    background: #fff;
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.14);
    padding: 4.2666666667vw 3.7333333333vw;
    height: 45.0666666667vw;
  }
}
.fv-cv-wrap .fv-cv-box .fv-cv-title {
  margin-bottom: 20px;
}
.fv-cv-wrap .fv-cv-box .fv-cv-title img {
  width: 344px;
  height: 22px;
}
@media (max-width: 767px) {
  .fv-cv-wrap .fv-cv-box .fv-cv-title img {
    width: 100%;
  }
}
.fv-cv-wrap .fv-cv-box .fv-cv-text {
  margin-top: 0;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .fv-cv-wrap .fv-cv-box .fv-cv-text {
    color: var(--Black, #333);
    font-family: "Noto Sans JP";
    font-size: 3.7333333333vw;
    font-style: normal;
    font-weight: 700;
    line-height: 100%; /* 14px */
  }
}
@media (max-width: 767px) {
  .fv-cv-wrap .fv-cv-box .fv-cv-content {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .fv-cv-wrap .fv-cv-box .fv-cv-content img {
    width: 60.8vw;
    height: 23.2vw;
    aspect-ratio: 228/87;
  }
}
.fv-cv-wrap .fv-cv-box .fv-cv-btn-area {
  height: 72px;
  gap: 16px;
  display: flex;
}
@media (max-width: 767px) {
  .fv-cv-wrap .fv-cv-box .fv-cv-btn-area {
    height: 13.3333333333vw;
  }
}
.fv-cv-wrap .fv-cv-box .fv-cv-btn-area a {
  position: relative;
  border-radius: var(--Radius-Radius-4, 4px);
  background: linear-gradient(91deg, #de0510 7.96%, #c6020a 92.04%);
  box-shadow: 0 4px 8px 2px rgba(0, 0, 0, 0.12);
  color: #fff;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 22px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  width: 352px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767px) {
  .fv-cv-wrap .fv-cv-box .fv-cv-btn-area a {
    font-size: 16px;
    font-weight: 700;
    line-height: 100%; /* 16px */
  }
}
@media (max-width: 767px) {
  .fv-cv-wrap .fv-cv-box .fv-cv-btn-area a::before {
    content: "";
    display: block;
    margin-right: 1.6vw;
    width: 1.56vw !important;
    height: 2.3vw !important;
    background-image: url("/content_assets/74dp1/img/right-arrow-9x6.svg");
  }
}
.fv-cv-wrap .fv-cv-box .fv-cv-btn-area a::after {
  content: "";
  position: absolute;
  display: block;
  width: 10px;
  height: 14px;
  right: 20px;
  background-image: url("/content_assets/74dp1/img/right-arrow-14x10.svg");
}
@media (max-width: 767px) {
  .fv-cv-wrap .fv-cv-box .fv-cv-btn-area a::after {
    display: none;
  }
}

.fv-cv-btn {
  color: var(--blue, #032262);
  font-family: "Zen Old Mincho";
  font-size: 22px;
  border-radius: 3px;
  background: var(--gold_btn, linear-gradient(90deg, #dbb25e 0%, #f3dea8 50%, #dbb25e 100%));
  font-weight: 700;
  display: flex;
  align-items: flex-end;
  padding-bottom: 17px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .fv-cv-btn {
    font-size: 1.5625vw;
    padding-bottom: 1.328125vw;
  }
}
@media (max-width: 767px) {
  .fv-cv-btn {
    font-size: 4.2666666667vw;
    font-style: normal;
    line-height: 100%;
    padding-bottom: 4.5333333333vw;
  }
}
.fv-cv-btn span {
  font-size: 18px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .fv-cv-btn span {
    font-size: 1.40625vw;
  }
}
@media (max-width: 767px) {
  .fv-cv-btn span {
    font-size: 4.2666666667vw;
  }
}

@media (max-width: 767px) {
  .fv-cv-btn::before {
    background-image: url("/content_assets/69wd3/img/contact-btn-arrow.svg");
    width: 3.2vw;
  }
}

.fv-cv-btn::after {
  background-image: url("/content_assets/69wd3/img/contact-btn-arrow.svg");
  width: 12px;
  height: 12px;
}

.fv-cv-btn-box {
  margin-top: 20px;
  margin-bottom: 34px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .fv-cv-btn-box {
    margin-top: 1.71875vw;
    margin-bottom: 2.65625vw;
  }
}
@media (max-width: 767px) {
  .fv-cv-btn-box {
    margin-top: 3.7333333333vw;
    margin-bottom: 5.3333333333vw;
  }
}

.common-btn {
  background: unset;
}
@media (max-width: 767px) {
  .common-btn {
    width: calc(100% - 8vw);
  }
}

.common-btn::after {
  background: unset;
  width: 13px;
}

.common-btn:hover {
  opacity: 0.7 !important;
}

.common-btn-bubble {
  background-image: url("/content_assets/69wd3/img/common-bubble-label-pc.webp");
  background-size: cover;
  background-color: unset;
  top: -7px;
  left: 15px;
  height: 57px;
  width: 67px;
  padding: 0;
  align-items: center;
  justify-content: center;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .common-btn-bubble {
    top: -0.546875vw;
    left: 1.171875vw;
    height: 4.453125vw;
    width: 5.234375vw;
  }
}
@media (max-width: 767px) {
  .common-btn-bubble {
    background-image: url("/content_assets/69wd3/img/common-bubble-label-sp.webp");
    left: 0;
    width: 18.4vw;
    height: 13.3333333333vw;
    top: 0px;
    margin-right: 1.8666666667vw;
    padding-right: 1.6vw;
  }
}

.common-btn-bubble::after {
  width: 100%;
  display: flex;
  border-left: none;
}

.common-btn-bubble-text {
  position: relative;
  width: 100%;
  text-align: center;
  padding-right: 50px;
}
@media (max-width: 767px) {
  .common-btn-bubble-text {
    padding-right: 3.90625vw;
  }
}
@media (max-width: 767px) {
  .common-btn-bubble-text {
    margin-left: -15.7333333333vw;
    display: flex;
    justify-content: center;
  }
}
.common-btn-bubble-text::before {
  content: "";
  position: absolute;
  top: -18px;
  left: 155px;
  transform: translateX(-43%);
  opacity: 0.4;
  background: linear-gradient(90deg, rgba(164, 127, 48, 0) 0%, #a47f30 50%, rgba(164, 127, 48, 0) 100%);
  background-blend-mode: multiply;
  width: 400px;
  height: 1px;
  flex-shrink: 0;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .common-btn-bubble-text::before {
    width: 31.25vw;
    top: -1.40625vw;
    left: 12.109375vw;
    height: 0.078125vw;
  }
}
@media (max-width: 767px) {
  .common-btn-bubble-text::before {
    width: 80vw;
    top: -1.8666666667vw;
  }
}
.common-btn-bubble-text::after {
  content: "";
  position: absolute;
  bottom: -18px;
  left: 155px;
  transform: translateX(-43%);
  opacity: 0.4;
  background: linear-gradient(90deg, rgba(164, 127, 48, 0) 0%, #a47f30 50%, rgba(164, 127, 48, 0) 100%);
  background-blend-mode: multiply;
  width: 400px;
  height: 1px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .common-btn-bubble-text::after {
    width: 31.25vw;
    bottom: -1.40625vw;
    left: 12.109375vw;
    height: 0.078125vw;
  }
}
@media (max-width: 767px) {
  .common-btn-bubble-text::after {
    width: 80vw;
    bottom: -1.8666666667vw;
  }
}

.awards {
  height: 494px;
  padding: 140px 0 56px;
  background: linear-gradient(180deg, #f5f3ee 0%, #fbf9f5 100%);
}
@media (max-width: 767px) {
  .awards {
    height: 98.9333333333vw;
    padding: 48vw 0 8.5333333333vw;
  }
}
.awards .awards-inner {
  max-width: 980px;
  margin: 0 auto;
  position: relative;
}
.awards .awards-inner .awards-container {
  position: relative;
}
.awards .awards-inner .awards-container::after {
  content: "";
  position: absolute;
  bottom: -85px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 32px;
  background-image: url("/content_assets/74dp1/img/awards-after.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 10;
}
@media (max-width: 767px) {
  .awards .awards-inner .awards-container::after {
    background-image: url("/content_assets/74dp1/img/awards-after-sp.svg");
    width: 16vw;
    height: 6.4vw;
    bottom: -14.4vw;
  }
}
@media (max-width: 767px) {
  .awards .awards-inner .awards-container {
    padding: 0;
  }
}
.awards .awards-inner .awards-container .awards-title {
  width: 626px;
  margin: 0 auto 16px;
}
.awards .awards-inner .awards-container .awards-bizreach {
  margin: 0 auto 24px;
  width: 606.672px;
  height: 80px;
}
@media (max-width: 767px) {
  .awards .awards-inner .awards-container .awards-bizreach {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .awards .awards-inner .awards-container .awards-content {
    width: 100%;
    height: 22.0517333333vw;
    text-align: center;
    margin-bottom: 4.2666666667vw;
  }
}
.awards .awards-inner .awards-container .awards-content img {
  width: 82.6666666667vw;
}
.awards .awards-inner .awards-container .awards-mvp {
  margin: auto;
  width: 649px;
  height: 122px;
}
@media (max-width: 767px) {
  .awards .awards-inner .awards-container .awards-mvp {
    width: 89.3333333333vw;
    height: 16.1333333333vw;
  }
}

.awards-box {
  display: flex;
  gap: 23.5px;
  justify-content: center;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .awards-box {
    gap: 1.8359375vw;
  }
}
@media (max-width: 767px) {
  .awards-box {
    margin-top: 8.5333333333vw;
    flex-direction: column;
    gap: 0;
  }
}

.awards-col {
  flex: 1;
  max-width: 311px;
}
@media (max-width: 767px) {
  .awards-col {
    max-width: none;
  }
}

@media (max-width: 767px) {
  .awards-col + .awards-col {
    margin-top: 4.2666666667vw;
  }
}

.awards-heading {
  font-family: "Zen Old Mincho";
  font-size: 34px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .awards-heading {
    font-size: 2.65625vw;
  }
}
@media (max-width: 767px) {
  .awards-heading {
    font-size: 5.8666666667vw;
    line-height: 140%;
  }
}

.awards-bubble {
  color: var(--blue, #032262);
  background: linear-gradient(90deg, #dff4f7 0%, #c3e5f7 100%);
  border-radius: 0px;
  width: 311px;
  height: 224px;
  padding: 24px 25px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .awards-bubble {
    width: 24.296875vw;
    height: 17.5vw;
    padding: 1.875vw 1.953125vw;
  }
}
@media (max-width: 767px) {
  .awards-bubble {
    width: 89.3333333333vw;
    height: auto;
    min-height: 40vw;
    max-height: 46.4vw;
    padding: 4.2666666667vw 6.6666666667vw;
  }
}

.awards-bubble__inner {
  color: var(--blue, #032262);
  text-align: center;
}

.awards-line {
  background: #b0c2e8;
  width: 260px;
  height: 1px;
  margin: 0 auto 16px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .awards-line {
    width: 20.3125vw;
    margin: 0 auto 1.25vw;
  }
}
@media (max-width: 767px) {
  .awards-line {
    width: 76vw;
    margin: 0 auto 2.1333333333vw;
  }
}

.awards-text {
  color: var(--blue, #032262);
  font-size: 18px;
  font-weight: 500;
  margin: 0;
  line-height: 1.6;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .awards-text {
    font-size: 1.40625vw;
  }
}
@media (max-width: 767px) {
  .awards-text {
    font-size: 4.2666666667vw;
  }
}

.relay-arrow-img2 {
  width: 90px;
  height: 30px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .relay-arrow-img2 {
    width: 7.03125vw;
    height: 2.34375vw;
  }
}
@media (max-width: 767px) {
  .relay-arrow-img2 {
    width: 19.2vw;
    height: 6.4vw;
  }
}

.example {
  height: 826px;
  background: linear-gradient(180deg, #efeeeb 0%, #e5e5e2 100%);
  padding: 80px 0;
  position: relative;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .example {
    height: 64.53125vw;
    padding: 6.25vw 0;
  }
}
@media (min-width: 767px) and (max-width: 1280px) {
  .example {
    padding: 4.6875vw 0;
  }
}
@media (max-width: 767px) {
  .example {
    height: 1551px;
    padding: 14.9333333333vw 0 17.0666666667vw;
  }
}
.example::after {
  content: "";
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 32px;
  background-image: url("/content_assets/74dp1/img/example-after.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 10;
}
@media (max-width: 767px) {
  .example::after {
    background-image: url("/content_assets/74dp1/img/example-after-sp.svg");
    width: 16vw;
    height: 6.4vw;
    bottom: -5.8666666667vw;
  }
}
.example .example-inner {
  max-width: 980px;
  margin: 0 auto;
}
.example .example-inner .example-heading {
  color: #012281;
  font-family: "Noto Sans JP";
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 36px */
  margin-bottom: 60px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .example .example-inner .example-heading {
    font-size: 2.8125vw;
    margin-bottom: 4.6875vw;
  }
}
@media (max-width: 767px) {
  .example .example-inner .example-heading {
    margin-bottom: 0;
    font-size: 32px;
  }
}
.example .example-inner .example-card-container {
  position: relative;
  display: flex;
  gap: 23.52px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .example .example-inner .example-card-container {
    height: 32.65625vw;
    gap: 1.8375vw;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .example .example-inner .example-card-container {
    flex-direction: column;
    width: 335px;
    margin: 0 auto;
    gap: 10px;
  }
}
.example .example-inner .example-card-container .example-card {
  border-radius: 4px;
  filter: drop-shadow(2px 6px 6px rgba(196, 196, 196, 0.5));
}
.example .example-inner .example-card-container .example-card img {
  height: auto;
  filter: drop-shadow(2px 6px 6px rgba(196, 196, 196, 0.5));
}
@media (min-width: 767px) and (max-width: 1280px) {
  .example .example-inner .example-card-container .example-card img {
    height: 32.65625vw;
  }
}
.example .example-inner .example-comment-col__notice {
  display: flex;
  margin: 10px auto 80px;
  color: var(--gray, #7a7a7a);
  font-family: "Noto Sans JP";
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 10px */
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .example .example-inner .example-comment-col__notice {
    margin: 0.78125vw auto 6.25vw;
    font-size: 0.78125vw;
    width: 76.5625vw;
  }
}
@media (max-width: 767px) {
  .example .example-inner .example-comment-col__notice {
    width: 335px;
    color: var(--gray, #7a7a7a);
    text-align: right;
    font-family: "Noto Sans JP";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    margin: 20px auto 40px;
  }
}
.example .example-inner .example-btn-area {
  margin: 0 auto;
  width: 480px;
}
@media (max-width: 767px) {
  .example .example-inner .example-btn-area {
    width: 100%;
  }
}
.example .example-inner .example-btn-area a {
  display: flex;
  position: relative;
  align-items: center;
  padding: 24px 49px 24px 102px;
  border-radius: 4px;
  background: linear-gradient(91deg, #de0510 7.96%, #c6020a 92.04%);
  box-shadow: 0 4px 8px 2px rgba(0, 0, 0, 0.12);
  color: #fff;
  font-family: "Noto Sans JP";
  font-size: 22px;
  font-style: normal;
  font-weight: 900;
  line-height: 100%; /* 22px */
}
@media (max-width: 767px) {
  .example .example-inner .example-btn-area a {
    width: 335px;
    height: 72px;
    margin: auto;
    padding: 10px 61.37px 10px 98.45px;
    border-radius: 4px;
    background: linear-gradient(91deg, #de0510 7.96%, #c6020a 92.04%);
    color: #fff;
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 22px;
    font-style: normal;
    font-weight: 900;
    line-height: 120%;
    letter-spacing: 0.44px;
  }
}
.example .example-inner .example-btn-area a::before {
  content: "完全\a無料";
  white-space: pre-wrap;
  position: absolute;
  background-image: url("/content_assets/74dp1/img/example-cv-btn-before.svg");
  background-repeat: no-repeat;
  background-position: left center;
  left: 0;
  height: 100%;
  width: 89px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: "Noto Sans JP";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  letter-spacing: 1.8px;
  padding: 16px 32px 16px 16px;
}
@media (max-width: 767px) {
  .example .example-inner .example-btn-area a::before {
    background-image: url("/content_assets/74dp1/img/example-cv-btn-before-sp.svg");
    width: 82px;
    padding: 14px 26.97px 14px 12px;
    top: 0;
  }
}
.example .example-inner .example-btn-area a::after {
  content: "";
  position: absolute;
  display: block;
  right: 20px;
  width: 10px;
  height: 14px;
  background-image: url("/content_assets/74dp1/img/right-arrow-14x10.svg");
  background-repeat: no-repeat;
}
@media (max-width: 767px) {
  .example .example-inner .example-btn-area a::after {
    width: 2.1333333333vw;
    height: 3.2vw;
    right: 4.2666666667vw;
    top: 8.2666666667vw;
    background-image: url("/content_assets/74dp1/img/right-arrow-12x8.svg");
  }
}

.challenge {
  height: 678px;
  background: linear-gradient(180deg, #f7f7f7 0%, #ebebeb 100%);
}
@media (min-width: 767px) and (max-width: 1280px) {
  .challenge {
    height: 52.96875vw;
  }
}
@media (max-width: 767px) {
  .challenge {
    height: auto;
  }
}
.challenge .challenge-inner {
  max-width: 980px;
  margin: 0 auto;
  position: relative;
  padding: 100px 0;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .challenge .challenge-inner {
    width: 76.5625vw;
    padding: 7.8125vw 0;
  }
}
@media (max-width: 767px) {
  .challenge .challenge-inner {
    height: 100%;
    padding: 14.9333333333vw 0 17.0666666667vw;
  }
}
.challenge .challenge-inner::after {
  content: "";
  position: absolute;
  bottom: -27px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 32px;
  background-image: url("/content_assets/74dp1/img/challenge-after.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 10;
}
@media (max-width: 767px) {
  .challenge .challenge-inner::after {
    background-image: url("/content_assets/74dp1/img/challenge-after-sp.svg");
    width: 16vw;
    height: 6.4vw;
    bottom: -5.8666666667vw;
  }
}
.challenge .challenge-inner .challenge-title {
  color: #012281;
  font-family: "Noto Sans JP";
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 36px */
  margin-bottom: 24px;
  text-align: center;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .challenge .challenge-inner .challenge-title {
    font-size: 2.8125vw;
    margin-bottom: 1.875vw;
  }
}
@media (max-width: 767px) {
  .challenge .challenge-inner .challenge-title {
    font-size: 8.5333333333vw;
    line-height: 120%;
    width: 76.8vw;
    margin: auto;
    margin-bottom: 6.4vw;
  }
}
.challenge .challenge-inner .challenge-text {
  color: #333;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%; /* 28.8px */
  margin-bottom: 36px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .challenge .challenge-inner .challenge-text {
    font-size: 1.40625vw;
    margin-bottom: 2.8125vw;
  }
}
@media (max-width: 767px) {
  .challenge .challenge-inner .challenge-text {
    font-size: 3.7333333333vw;
    width: 89.3333333333vw;
    margin: auto;
    margin-bottom: 6.4vw;
  }
}
.challenge .challenge-inner .challenge-content {
  display: grid;
  grid-template-columns: 1fr 3px 1fr;
  width: 100%;
  max-width: 980px;
  height: 324px;
  padding: 40px 53.5px;
  justify-content: center;
  align-items: center;
  gap: 36px;
  border-radius: 4px;
  background: #fff;
  box-shadow: 2px 6px 6px 0 rgba(196, 196, 196, 0.2);
}
@media (min-width: 767px) and (max-width: 1280px) {
  .challenge .challenge-inner .challenge-content {
    height: 25.3125vw;
    padding: 3.125vw 4.1796875vw;
    gap: 2.8125vw;
  }
}
@media (max-width: 767px) {
  .challenge .challenge-inner .challenge-content {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    background: transparent;
    padding: 0 5.3333333333vw;
    box-shadow: unset;
    gap: 32px;
    border-radius: 4px;
  }
}
.challenge .challenge-inner .challenge-content .challenge-content-item {
  position: relative;
  width: 100%;
}
.challenge .challenge-inner .challenge-content .challenge-content-item .challenge-content-item-id {
  position: absolute;
  top: -22px;
  left: -22px;
}
.challenge .challenge-inner .challenge-content .challenge-content-item .challenge-content-item-id img {
  width: auto;
  height: 100px;
  aspect-ratio: unset;
}
.challenge .challenge-inner .challenge-content .challenge-content-item:last-child .challenge-content-item-id {
  left: -11px;
}
.challenge .challenge-inner .challenge-content .challenge-content-item img {
  width: 400px;
  height: auto;
  aspect-ratio: 400/244;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .challenge .challenge-inner .challenge-content .challenge-content-item img {
    width: 31.25vw;
  }
}
@media (max-width: 767px) {
  .challenge .challenge-inner .challenge-content .challenge-content-item img {
    width: 89.3333333333vw;
    aspect-ratio: 335/304;
    box-shadow: 2px 6px 6px 0 rgba(196, 196, 196, 0.2);
  }
}
@media (max-width: 767px) {
  .challenge .challenge-inner .challenge-content .challenge-content-item img.img-02 {
    aspect-ratio: 335/276;
  }
}
.challenge .challenge-inner .challenge-content .challenge-content-separator {
  width: 1px;
  height: 240px;
  background: rgba(0, 0, 0, 0.2);
}
@media (min-width: 767px) and (max-width: 1280px) {
  .challenge .challenge-inner .challenge-content .challenge-content-separator {
    height: 18.75vw;
  }
}

.support {
  background: var(--gray_bg, linear-gradient(180deg, #f3f3f3 0%, #ededed 100%));
  padding-top: 80px;
  padding-bottom: 100px;
}
@media (max-width: 767px) {
  .support {
    padding-top: 12.3076923077vw;
    padding-bottom: 15.3846153846vw;
  }
}

.support-heading-sub {
  color: var(--blue, #032262);
  font-size: 28px;
  font-family: "Zen Old Mincho";
  font-weight: 900;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support-heading-sub {
    font-size: 2.1875vw;
  }
}
@media (max-width: 767px) {
  .support-heading-sub {
    font-size: 4.2666666667vw;
    font-weight: 900;
    line-height: 100%;
  }
}

.support-heading-main {
  color: var(--blue, #032262);
  font-size: 34px;
  font-family: "Zen Old Mincho";
  letter-spacing: 0;
}
@media (max-width: 767px) {
  .support-heading-main {
    font-size: 5.8666666667vw;
    font-style: normal;
    font-weight: 900;
    line-height: 140%;
  }
}
.support-heading-main strong {
  color: var(--gold, #a38950);
}

.support-box {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support-box {
    max-width: 76.5625vw;
  }
}
.support-box {
  display: flex;
  gap: 23.5px;
  justify-content: space-between;
  margin-top: 60px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support-box {
    gap: 1.8359375vw;
    margin-top: 4.6875vw;
  }
}
@media (max-width: 767px) {
  .support-box {
    display: block;
    margin-top: 7.6923076923vw;
  }
}

.support-col__inner, .support-col__inner2 {
  border-radius: 3px;
  background: linear-gradient(180deg, #e9d9b0 0%, #a88a4a 100%);
  width: 311px;
  height: 260px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support-col__inner, .support-col__inner2 {
    width: 24.296875vw;
    height: 20.3125vw;
  }
}
@media (max-width: 767px) {
  .support-col__inner, .support-col__inner2 {
    width: 89.3333333333vw;
    height: 58.6666666667vw;
  }
}

@media (max-width: 767px) {
  .support-col__inner2 {
    height: 64vw;
  }
}

.support-col__title-inner {
  color: var(--blue, #032262);
  font-family: "Zen Old Mincho";
}
@media (max-width: 767px) {
  .support-col__title-inner {
    text-align: center;
    font-family: "Zen Old Mincho";
    font-size: 4.8vw;
    font-style: normal;
    font-weight: 700;
    line-height: 130%; /* 23.4px */
  }
}

.support-col__border {
  border: none;
  width: 227px;
  height: 2px;
  background: linear-gradient(90deg, rgba(163, 137, 80, 0) 0%, #a38950 50%, rgba(163, 137, 80, 0) 100%);
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support-col__border {
    width: 17.734375vw;
    height: 0.15625vw;
  }
}
@media (max-width: 767px) {
  .support-col__border {
    width: 60.5333333333vw;
    height: 0.5333333333vw;
    transform: translateY(-1.3333333333vw);
  }
}

.support-col__textarea1 {
  letter-spacing: -2.56px;
  background-image: url("/content_assets/69wd3/img/support-col__text1-bg.webp");
  background-size: 101px 94px;
  background-position: 175px 25px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support-col__textarea1 {
    background-size: 7.890625vw 7.34375vw;
    background-position: 13.671875vw 1.953125vw;
  }
}
@media (max-width: 767px) {
  .support-col__textarea1 {
    background-size: 15.4666666667vw 14.4vw;
    background-position: 58.6666666667vw 3.2vw;
  }
}

.support-col__text1 {
  color: var(--white, #fff);
  font-family: "Zen Old Mincho";
}
@media (max-width: 767px) {
  .support-col__text1 {
    margin-bottom: 6.6666666667vw;
  }
}

.support-col__text1 strong {
  font-family: "Zen Old Mincho";
  font-size: 64px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support-col__text1 strong {
    font-size: 5vw;
  }
}
@media (max-width: 767px) {
  .support-col__text1 strong {
    font-size: 17.0666666667vw;
  }
}

.support-col__textarea1 .medium {
  color: var(--white, #fff);
  font-family: "Zen Old Mincho";
  font-size: 26px;
  font-style: normal;
  font-weight: 700;
  line-height: 80%;
  letter-spacing: -1.04px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support-col__textarea1 .medium {
    font-size: 2.03125vw;
    letter-spacing: -0.08125vw;
  }
}
@media (max-width: 767px) {
  .support-col__textarea1 .medium {
    font-size: 6.9333333333vw;
    letter-spacing: -0.2773333333vw;
  }
}
@media (max-width: 767px) and (max-width: 767px) {
  .support-col__textarea1 .medium {
    margin-bottom: 6.6666666667vw;
  }
}

.support-col__textarea1 .small {
  color: var(--white, #fff);
  font-family: "Zen Old Mincho";
  font-size: 18px;
  font-style: normal;
  font-weight: 900;
  line-height: 80%;
  letter-spacing: -0.72px;
  margin-top: 8px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support-col__textarea1 .small {
    font-size: 1.40625vw;
    letter-spacing: -0.05625vw;
    margin-top: 0.625vw;
  }
}
@media (max-width: 767px) {
  .support-col__textarea1 .small {
    font-size: 4.8vw;
    letter-spacing: -0.192vw;
    margin-top: 2.1333333333vw;
  }
}
@media (max-width: 767px) and (max-width: 767px) {
  .support-col__textarea1 .small {
    margin-bottom: 6.6666666667vw;
  }
}

.support-col__summary, .support-col__summary3, .support-col__summary2 {
  background: var(--blue, #032262);
  padding-bottom: 2px;
  width: 293px;
  height: 40px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support-col__summary, .support-col__summary3, .support-col__summary2 {
    padding-bottom: 0.15625vw;
    width: 22.890625vw;
    height: 3.125vw;
  }
}
@media (max-width: 767px) {
  .support-col__summary, .support-col__summary3, .support-col__summary2 {
    width: 80vw;
    height: 9.0666666667vw;
  }
}

@media (max-width: 767px) {
  .support-col__summary2 {
    width: 56vw;
  }
}

@media (max-width: 767px) {
  .support-col__summary3 {
    width: 61.3333333333vw;
  }
}

.support-col__summary-text {
  color: var(--white, #fff);
  font-family: "Zen Old Mincho";
}

.support-col__summary-text::before {
  background-image: url("/content_assets/69wd3/img/summary-icon-check.svg");
}

.support-col__notice {
  color: var(--white, #fff);
}

.support-col__text2 {
  color: var(--white, #fff);
  margin: 0 37px;
}
@media (max-width: 767px) {
  .support-col__text2 {
    margin: 0 13.8666666667vw;
  }
}

.support-col__text3 {
  color: var(--white, #fff);
  margin-top: 25px;
  align-self: flex-start;
  font-size: 18px;
  line-height: 170%;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support-col__text3 {
    margin-top: 1.953125vw;
    font-size: 1.40625vw;
  }
}
@media (max-width: 767px) {
  .support-col__text3 {
    margin-top: 2.9333333333vw;
    font-size: 4.8vw;
    margin-bottom: 19.2vw;
    line-height: 165%;
  }
}

.strength {
  height: 1164px;
  background-image: url("/content_assets/74dp1/img/strength-bg.webp");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
@media (max-width: 767px) {
  .strength {
    height: 1696px;
    background-image: url("/content_assets/74dp1/img/strength-bg-sp.webp");
  }
}
.strength .strength-inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 72px 0 80px;
}
@media (max-width: 767px) {
  .strength .strength-inner {
    padding: 14.9333333333vw 0;
  }
}
.strength .strength-inner .strength-title {
  color: #012281;
  font-family: "Noto Sans JP";
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 36px */
  text-align: center;
  margin-bottom: 76px;
}
@media (max-width: 767px) {
  .strength .strength-inner .strength-title {
    font-size: 8.5333333333vw;
    margin-bottom: 12.8vw;
  }
}
.strength .strength-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin-bottom: 78px;
}
@media (max-width: 767px) {
  .strength .strength-content {
    display: flex;
    flex-direction: column;
    width: 89.3333333333vw;
    gap: 10.6666666667vw;
    margin: auto;
    margin-bottom: 12.8vw;
  }
}
.strength .strength-content .strength-content-item .strength-content-item-icon {
  margin-bottom: 16px;
  text-align: center;
}
.strength .strength-content .strength-content-item .strength-content-item-icon img {
  height: 113.5px;
  width: auto;
}
@media (max-width: 767px) {
  .strength .strength-content .strength-content-item .strength-content-item-icon img {
    height: 29.3333333333vw;
  }
}
.strength .strength-content .strength-content-item .strength-content-item-title {
  color: #012281;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 36px */
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .strength .strength-content .strength-content-item .strength-content-item-title {
    font-size: 4.8vw;
  }
}
.strength .strength-content .strength-content-item .strength-content-item-text {
  padding: 20px;
  color: #333;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 200%; /* 32px */
  background: #fff;
  box-shadow: 2px 6px 6px 0 rgba(196, 196, 196, 0.2);
}
@media (max-width: 767px) {
  .strength .strength-content .strength-content-item .strength-content-item-text {
    font-size: 3.7333333333vw;
    padding: 4.2666666667vw;
  }
}
.strength .strength-cv {
  width: 100%;
  max-width: 980px;
  height: 372px;
  border-radius: 4px;
  background: linear-gradient(90deg, #102868 0%, #012281 10%, #374e92 50%, #012281 90%, #102868 100%);
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.14);
  position: relative;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .strength .strength-cv {
    width: 76.5625vw;
    height: 29.0625vw;
    margin: auto;
  }
}
@media (max-width: 767px) {
  .strength .strength-cv {
    width: 89.3333333333vw;
    height: 80vw;
    margin: auto;
  }
}
.strength .strength-cv .strength-cv-inner {
  padding: 50.5px 0 69.5px;
}
@media (max-width: 767px) {
  .strength .strength-cv .strength-cv-inner {
    padding: 6.4vw 5.3333333333vw;
  }
}
.strength .strength-cv .strength-cv-inner .strength-cv-microcopy {
  display: flex;
  width: 120px;
  margin: 0 auto 24px;
  color: #012281;
  font-family: "Noto Sans JP";
  font-size: 18px;
  font-style: normal;
  font-weight: 900;
  line-height: 100%; /* 18px */
  background: #fff;
  padding: 8px 18px;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .strength .strength-cv .strength-cv-inner .strength-cv-microcopy {
    width: 9.375vw;
    margin: 0 auto 1.875vw;
    padding: 0.625vw 1.40625vw;
    gap: 0.78125vw;
    margin: 0 auto 1.875vw;
    font-size: 1.40625vw;
  }
}
@media (max-width: 767px) {
  .strength .strength-cv .strength-cv-inner .strength-cv-microcopy {
    font-size: 3.7333333333vw;
    font-weight: 700;
    display: flex;
    width: 21.4965333333vw;
    padding: 1.0666666667vw 2.1333333333vw;
    margin: 0;
    margin-bottom: 2.1333333333vw;
  }
}
.strength .strength-cv .strength-cv-inner .strength-cv-title {
  text-align: center;
  color: #fff;
  font-family: "Noto Sans JP";
  font-size: 38px;
  font-style: normal;
  font-weight: 900;
  line-height: 100%; /* 38px */
  margin-bottom: 24px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .strength .strength-cv .strength-cv-inner .strength-cv-title {
    font-size: 2.96875vw;
    margin-bottom: 1.875vw;
  }
}
@media (max-width: 767px) {
  .strength .strength-cv .strength-cv-inner .strength-cv-title {
    font-size: 6.4vw;
    line-height: 120%; /* 28.8px */
    text-align: left;
    margin: 0;
    margin-bottom: 2.6666666667vw;
  }
}
.strength .strength-cv .strength-cv-inner .strength-cv-subtitle {
  text-align: center;
  color: #fff;
  font-family: "Noto Sans JP";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 20px */
  margin-bottom: 40px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .strength .strength-cv .strength-cv-inner .strength-cv-subtitle {
    font-size: 1.5625vw;
    margin-bottom: 3.125vw;
  }
}
@media (max-width: 767px) {
  .strength .strength-cv .strength-cv-inner .strength-cv-subtitle {
    font-size: 4vw;
    text-align: left;
    margin-bottom: 4.5333333333vw;
    letter-spacing: 0.1333333333vw;
  }
}
.strength .strength-cv .strength-cv-inner .strength-cv-btn-box {
  width: 660px;
  margin: 0 auto;
  gap: 20px;
  display: flex;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .strength .strength-cv .strength-cv-inner .strength-cv-btn-box {
    width: 51.5625vw;
    gap: 1.5625vw;
  }
}
@media (max-width: 767px) {
  .strength .strength-cv .strength-cv-inner .strength-cv-btn-box {
    width: 100%;
    flex-direction: column;
    gap: 2.6666666667vw;
  }
}
.strength .strength-cv .strength-cv-inner .strength-cv-btn-box a {
  display: inline-flex;
  position: relative;
  width: 320px;
  height: 72px;
  border-radius: 4px;
  background: linear-gradient(91deg, #de0510 7.96%, #c6020a 92.04%);
  color: #fff;
  font-family: "Noto Sans JP";
  font-size: 22px;
  font-style: normal;
  font-weight: 900;
  line-height: 100%; /* 22px */
  justify-content: center;
  align-items: center;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .strength .strength-cv .strength-cv-inner .strength-cv-btn-box a {
    width: 25vw;
    height: 5.625vw;
    font-size: 1.71875vw;
  }
}
@media (max-width: 767px) {
  .strength .strength-cv .strength-cv-inner .strength-cv-btn-box a {
    width: 50.6666666667vw;
    height: 14.9333333333vw;
    padding: 0 4.2666666667vw;
    justify-content: left;
    font-size: 4.8vw;
    font-weight: 700;
  }
}
.strength .strength-cv .strength-cv-inner .strength-cv-btn-box a::after {
  content: "";
  position: absolute;
  display: block;
  right: 20px;
  width: 10px;
  height: 14px;
  background-image: url("/content_assets/74dp1/img/right-arrow-14x10.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
@media (max-width: 767px) {
  .strength .strength-cv .strength-cv-inner .strength-cv-btn-box a::after {
    width: 2.1333333333vw;
    height: 3.2vw;
    right: 4.2666666667vw;
    background-image: url("/content_assets/74dp1/img/right-arrow-12x8.svg");
  }
}
.strength .strength-cv .strength-cv-man {
  position: absolute;
  bottom: 0;
  left: 818px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .strength .strength-cv .strength-cv-man {
    left: 63.90625vw;
  }
}
@media (max-width: 767px) {
  .strength .strength-cv .strength-cv-man {
    left: unset;
    right: 0;
  }
}
.strength .strength-cv .strength-cv-man img {
  width: 314px;
  height: auto;
  aspect-ratio: 314/416;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .strength .strength-cv .strength-cv-man img {
    width: 24.53125vw;
  }
}
@media (max-width: 767px) {
  .strength .strength-cv .strength-cv-man img {
    width: 33.3333333333vw;
    aspect-ratio: 125/268;
  }
}

.highclass-consultants-badge {
  margin: 0 auto 16.8px;
  text-align: center;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .highclass-consultants-badge {
    margin: 0 auto 1.3125vw;
  }
}
@media (max-width: 767px) {
  .highclass-consultants-badge {
    margin: 0 auto 2.3466666667vw;
  }
}
.highclass-consultants-badge img {
  width: 410px;
  height: auto;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .highclass-consultants-badge img {
    width: 32.03125vw;
  }
}
@media (max-width: 767px) {
  .highclass-consultants-badge img {
    width: 77.0666666667vw;
  }
}

.highclass-consultants {
  padding: 0 0 80px;
  margin: 0 auto;
  text-align: center;
  aspect-ratio: 1920/611;
  background-size: cover;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .highclass-consultants {
    padding: 0 0 6.25vw;
  }
}
@media (max-width: 767px) {
  .highclass-consultants {
    padding: 0 0 10.6666666667vw;
    aspect-ratio: 375/795;
  }
}
.highclass-consultants h3 {
  color: #032262;
  text-align: center;
  font-family: "Zen Old Mincho";
  font-size: 34px;
  font-style: normal;
  font-weight: 900;
  line-height: 100%;
  margin-bottom: 50px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .highclass-consultants h3 {
    font-size: 2.65625vw;
    margin-bottom: 3.90625vw;
  }
}
@media (max-width: 767px) {
  .highclass-consultants h3 {
    font-size: 5.8666666667vw;
    line-height: 140%;
    margin-bottom: 8vw;
  }
}
.highclass-consultants h3 strong {
  color: var(--gold_, #8f722e);
}
.highclass-consultants p {
  color: #333;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%;
  margin-bottom: 40px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .highclass-consultants p {
    font-size: 1.40625vw;
    margin-bottom: 3.125vw;
  }
}
@media (max-width: 767px) {
  .highclass-consultants p {
    font-size: 3.7333333333vw;
    letter-spacing: -0.0746666667vw;
  }
}
.highclass-consultants .consultant-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .highclass-consultants .consultant-grid {
    gap: 1.875vw;
  }
}
@media (max-width: 767px) {
  .highclass-consultants .consultant-grid {
    gap: 6.4vw 4.4906666667vw;
  }
}
.highclass-consultants .consultant-card {
  width: 227px;
  text-align: left;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .highclass-consultants .consultant-card {
    width: 17.734375vw;
  }
}
@media (max-width: 767px) {
  .highclass-consultants .consultant-card {
    width: 43.7333333333vw;
  }
}
.highclass-consultants .consultant-card .consultant-img {
  width: 227px;
  height: 227px;
  background: linear-gradient(180deg, #eff2f7 35.959%, #e9eef4 100%);
  margin-bottom: 24px;
  border: 1px solid #ccc0a3;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .highclass-consultants .consultant-card .consultant-img {
    width: 17.734375vw;
    height: 17.734375vw;
    margin-bottom: 1.875vw;
    border: 0.078125vw solid #ccc0a3;
  }
}
@media (max-width: 767px) {
  .highclass-consultants .consultant-card .consultant-img {
    height: 43.7333333333vw;
    width: 43.7333333333vw;
    margin-bottom: 4.2666666667vw;
    border: 0.1925333333vw solid #ccc0a3;
  }
}
.highclass-consultants .consultant-card .consultant-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.highclass-consultants .consultant-card .consultant-name {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 100%;
  color: var(--gold_, #8f722e);
  padding: 0 8px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .highclass-consultants .consultant-card .consultant-name {
    font-size: 1.5625vw;
    padding: 0 0.625vw;
  }
}
@media (max-width: 767px) {
  .highclass-consultants .consultant-card .consultant-name {
    font-size: 4vw;
    padding: 0;
  }
}
.highclass-consultants .consultant-card .consultant-desc {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 25.352px;
  color: #032262;
  letter-spacing: 0;
  padding: 0px 8px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .highclass-consultants .consultant-card .consultant-desc {
    font-weight: 31.25vw;
    font-size: 1.25vw;
    line-height: 1.980625vw;
    padding: 0 0.625vw;
  }
}
@media (max-width: 767px) {
  .highclass-consultants .consultant-card .consultant-desc {
    font-size: 3.4666666667vw;
    line-height: 4.8533333333vw;
    padding: 0;
  }
}
.highclass-consultants .consultant-card .consultant-role {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 13px;
  line-height: 1.4;
  color: #014c96;
  margin-top: 6px;
}
.highclass-consultants .consultant-card .border {
  margin: 16px auto;
  width: 211px;
  height: 1px;
  background: linear-gradient(90deg, #8f722e 0%, rgba(171, 144, 81, 0.2) 100%);
}
@media (min-width: 767px) and (max-width: 1280px) {
  .highclass-consultants .consultant-card .border {
    margin: 1.25vw auto;
    width: 16.484375vw;
    height: 0.078125vw;
  }
}
@media (max-width: 767px) {
  .highclass-consultants .consultant-card .border {
    width: 43.7333333333vw;
    margin: 3.2vw auto;
  }
}/*# sourceMappingURL=index.css.map */