@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 {
  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.1333333333vw 4vw;
  }
}

.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.6666666667vw;
  }
}

.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: 24vw;
    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: #1E2C31;
  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.7333333333vw;
    width: 40.8vw;
    height: 10.4vw;
  }
}

.header-btn::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 10px;
  background-image: url("/content_assets/60rm1/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;
  }
}

.loading {
  width: 100%;
  height: 100%;
  background: #fff;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 2000;
}

.js-opening-slide-in {
  opacity: 0;
  translate: 0 150px;
  will-change: opacity, translate;
}

@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/60rm1/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/60rm1/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/60rm1/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;
  }
}

.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: 492px;
  position: absolute;
  left: 0px;
  top: 58px;
  z-index: 3;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .fv-content {
    width: 38.4375vw;
    left: 0vw;
    top: 50%;
    transform: translateY(-50%);
  }
}
@media (max-width: 767px) {
  .fv-content {
    position: relative;
    width: 100%;
    left: unset;
    top: unset;
  }
}

.fv-main-copy {
  text-align: center;
  line-height: 1;
}

.fv-main-copy1 {
  display: inline-block;
  width: 367px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .fv-main-copy1 {
    width: 28.671875vw;
  }
}

.fv-main-copy-img {
  width: 24px;
  height: 24px;
  line-height: 1;
  vertical-align: 10%;
  margin: 0 5px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .fv-main-copy-img {
    width: 1.875vw;
    height: 1.875vw;
    margin: 0 0.390625vw;
  }
}

.fv-main-copy2 {
  color: #005F6A;
  font-size: 40px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.8px;
  display: inline-block;
  margin-top: 17px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .fv-main-copy2 {
    font-size: 3.125vw;
    margin-top: 1.328125vw;
  }
}

.fv-main-copy3 {
  color: #005F6A;
  font-size: 51.548px;
  font-weight: 900;
  line-height: 1;
  display: inline-block;
  margin-top: 13px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .fv-main-copy3 {
    font-size: 3.984375vw;
    margin-top: 1.015625vw;
  }
}

.fv-notice {
  color: rgba(141, 152, 149, 0.9);
  font-size: 10px;
  line-height: 1.4;
  position: absolute;
  bottom: 8px;
  right: -192px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .fv-notice {
    font-size: 0.78125vw;
    bottom: 0.625vw;
    right: -8.59375vw;
    width: 11.71875vw;
  }
}
@media (max-width: 767px) {
  .fv-notice {
    color: #656565;
    font-size: 2.1333333333vw;
    bottom: 2.1333333333vw;
    left: 5.3333333333vw;
    right: unset;
    z-index: 5;
  }
}

@media (max-width: 767px) {
  .fv-cv-box {
    width: calc(100% - 10.6666666667vw);
    margin: 0 5.3333333333vw;
  }
}
.fv-cv-box {
  width: 492px;
  height: 223px;
  border-radius: 6px;
  background: linear-gradient(180deg, rgba(216, 254, 249, 0.88) 0%, rgba(244, 255, 252, 0.88) 100%);
  margin-top: 29px;
  padding: 40px;
  filter: drop-shadow(-2px 9px 22px rgba(53, 61, 59, 0.22));
}
@media (min-width: 767px) and (max-width: 1280px) {
  .fv-cv-box {
    width: 38.4375vw;
    height: 17.421875vw;
    margin-top: 2.265625vw;
    padding: 3.125vw;
  }
}
@media (max-width: 767px) {
  .fv-cv-box {
    height: 47.2vw;
    position: absolute;
    left: 0;
    bottom: 6.9333333333vw;
    padding: 5.3333333333vw 3.7333333333vw;
  }
}

.fv-cv-title {
  color: #1E2C31;
  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: 5.0666666667vw;
  }
}

.fv-cv-title-bubble {
  font-size: 14px;
  padding: 4px 5px;
  background: #06B6A2;
  color: #fff;
  margin-right: 6px;
  display: inline-block;
  transform: translateY(-3px);
}
@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;
    transform: translateY(-0.234375vw);
  }
}
@media (max-width: 767px) {
  .fv-cv-title-bubble {
    font-size: 3.2vw;
    padding: 1.0666666667vw 1.6vw;
    margin-bottom: 1.6vw;
    margin-right: unset;
  }
}

.fv-cv-text {
  color: #1E2C31;
  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.7333333333vw;
    margin-top: 3.2vw;
  }
}

.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.2666666667vw;
    gap: 1.6vw;
  }
}

.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: #1E2C31;
  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.2666666667vw;
    width: 40vw;
    height: 13.3333333333vw;
  }
}

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

.fv-cv-btn::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 10px;
  background-image: url("/content_assets/60rm1/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;
  border-radius: 4px;
  background: linear-gradient(90deg, #F4AF00 0%, #F48A00 49.5%, #F46200 100%);
  width: 480px;
  height: 72px;
  position: relative;
  z-index: 2;
  border-radius: 4px;
  box-shadow: 2px 6px 13px 0px rgba(25, 110, 104, 0.36);
}
@media (min-width: 767px) and (max-width: 1280px) {
  .common-btn {
    width: 37.5vw;
    height: 5.625vw;
  }
}
@media (max-width: 767px) {
  .common-btn {
    width: calc(100% - 10.6666666667vw);
    height: 16vw;
  }
}

.common-btn::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 14px;
  background-image: url("/content_assets/60rm1/img/btn-arrow-white.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 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-maintext {
  color: #fff;
  font-size: 21px;
  font-weight: 900;
  line-height: 1;
  display: inline-flex;
  align-items: flex-end;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .common-btn-maintext {
    font-size: 1.640625vw;
  }
}
@media (max-width: 767px) {
  .common-btn-maintext {
    font-size: 4.8vw;
    letter-spacing: 0.04em;
  }
}

.common-btn-maintext strong {
  font-size: 26px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .common-btn-maintext strong {
    font-size: 2.03125vw;
  }
}
@media (max-width: 767px) {
  .common-btn-maintext strong {
    font-size: 5.8666666667vw;
  }
}

.common-btn-bubble {
  background-image: url("/content_assets/60rm1/img/common-btn-bubble-arrow.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top left;
  padding: 4px 6px;
  width: 93px;
  height: 72px;
  display: inline-flex;
  padding: 16px;
  position: relative;
  margin-right: 13px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .common-btn-bubble {
    padding: 0.3125vw 0.46875vw;
    width: 7.265625vw;
    height: 5.625vw;
    padding: 1.25vw;
    margin-right: 1.015625vw;
  }
}
@media (max-width: 767px) {
  .common-btn-bubble {
    width: 21.8666666667vw;
    height: 16vw;
    padding: 3.2vw 3.7333333333vw;
    margin-right: 3.7333333333vw;
  }
}

.common-btn-bubble span {
  color: #F47201;
  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; /* アニメーションのパフォーマンスを向上 */
}

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

.common-heading-count {
  font-family: "din-2014", sans-serif;
  color: #2BB89B;
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .common-heading-count {
    font-size: 2.65625vw;
  }
}
@media (max-width: 767px) {
  .common-heading-count {
    font-size: 5.8666666667vw;
  }
}

.common-heading-count::after {
  content: "";
  display: block;
  width: 60px;
  height: 1px;
  border-bottom: 3px solid #2BB89B;
  display: block;
  margin: 17px auto 0;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .common-heading-count::after {
    width: 4.6875vw;
    border-bottom: 0.234375vw solid #2BB89B;
    margin: 1.328125vw auto 0;
  }
}
@media (max-width: 767px) {
  .common-heading-count::after {
    width: 10.6666666667vw;
    border-bottom: 0.8vw solid #2BB89B;
    margin: 3.7333333333vw auto 0;
  }
}

.common-heading-bubble {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 7px;
  color: #005F6A;
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
  margin-top: 24px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .common-heading-bubble {
    gap: 0.546875vw;
    font-size: 1.875vw;
    margin-top: 1.875vw;
  }
}
@media (max-width: 767px) {
  .common-heading-bubble {
    gap: 1.8666666667vw;
    font-size: 4.2666666667vw;
    margin-top: 5.3333333333vw;
  }
}

.common-heading-bubble::before,
.common-heading-bubble::after {
  content: "";
  display: inline-block;
  width: 13px;
  height: 19px;
  background-image: url("/content_assets/60rm1/img/common-heading-bubble-border.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .common-heading-bubble::before,
  .common-heading-bubble::after {
    width: 1.015625vw;
    height: 1.484375vw;
  }
}
@media (max-width: 767px) {
  .common-heading-bubble::before,
  .common-heading-bubble::after {
    background-image: url("/content_assets/60rm1/img/common-heading-bubble-border-sp.svg");
    width: 3.2vw;
    height: 5.0666666667vw;
  }
}

.common-heading-bubble::after {
  transform: scale(-1, 1);
}

.common-heading-bubble__text {
  color: #005F6A;
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .common-heading-bubble__text {
    font-size: 1.875vw;
  }
}
@media (max-width: 767px) {
  .common-heading-bubble__text {
    font-size: 4.2666666667vw;
    transform: translateY(-0.5333333333vw);
  }
}

.common-heading-maintext {
  margin-top: 16px;
  color: #005F6A;
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
  display: inline-block;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .common-heading-maintext {
    margin-top: 1.25vw;
    font-size: 2.65625vw;
  }
}
@media (max-width: 767px) {
  .common-heading-maintext {
    margin-top: 2.1333333333vw;
    font-size: 5.3333333333vw;
    line-height: 1.35;
    position: relative;
  }
}

.common-heading-maintext__strong {
  font-size: 40px;
  background: linear-gradient(transparent 75%, #FFF600 75%);
}
@media (min-width: 767px) and (max-width: 1280px) {
  .common-heading-maintext__strong {
    font-size: 3.125vw;
  }
}
@media (max-width: 767px) {
  .common-heading-maintext__strong {
    font-size: 5.8666666667vw;
  }
}

.common-heading-notice {
  color: #005F6A;
  font-size: 10px;
  line-height: 1;
  font-weight: 400;
  display: block;
  text-align: right;
  margin-top: 7px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .common-heading-notice {
    font-size: 0.78125vw;
    margin-top: 0.546875vw;
  }
}
@media (max-width: 767px) {
  .common-heading-notice {
    color: #558481;
    font-size: 2.6666666667vw;
    display: inline-block;
    margin-top: 0;
    position: absolute;
    display: block;
    right: -8vw;
    bottom: 1.3333333333vw;
    text-align: left;
  }
}

.logos-slider {
  position: relative;
  display: flex;
  width: 100%;
  height: 60px;
  overflow: hidden;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .logos-slider {
    height: 4.6875vw !important;
  }
}
@media (max-width: 767px) {
  .logos-slider {
    height: 16vw !important;
  }
}

.logos-slider img {
  width: auto;
  max-width: -moz-fit-content;
  max-width: fit-content;
  height: 100%;
  will-change: transform;
}

.logos-slider img:first-child {
  animation: loop-1 100s linear -50s infinite;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  will-change: transform;
}

.logos-slider img + img {
  animation: loop-2 100s linear infinite;
}

@keyframes loop-1 {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes loop-2 {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-200%);
  }
}
.worries {
  padding: 60px 0 90px 0;
  background-color: #F0F3F3;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .worries {
    padding: 4.6875vw 0 7.03125vw 0;
  }
}
@media (max-width: 767px) {
  .worries {
    padding: 8vw 0;
  }
}

.worries-heading {
  color: #005F6A;
  font-size: 28px;
  font-weight: 900;
  line-height: 100%;
  text-align: center;
  letter-spacing: 0.03em;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .worries-heading {
    font-size: 2.1875vw;
  }
}
@media (max-width: 767px) {
  .worries-heading {
    font-size: 5.3333333333vw;
    font-weight: 700;
  }
}

.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 {
  max-width: 1210px;
  margin: 40px auto 0;
  display: flex;
  gap: 50px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .worries-box {
    max-width: 94.53125vw;
    margin: 3.125vw auto 0;
    gap: 3.90625vw;
  }
}
@media (max-width: 767px) {
  .worries-box {
    display: block;
    margin: 8vw auto 0;
  }
}

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

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

.worries-bubble {
  width: 370px;
  height: 140px;
  background: #C4DFDC;
  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: 28.90625vw;
    height: 10.9375vw;
  }
}
@media (max-width: 767px) {
  .worries-bubble {
    width: 100%;
    height: 29.0666666667vw;
  }
}

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

.worries-bubble__inner {
  color: #005F6A;
  text-align: center;
  font-size: 18px;
  font-weight: 900;
  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.7333333333vw;
    line-height: 1.5;
  }
}

.worries-bubble__inner span {
  background: linear-gradient(transparent 50%, #F7F7F7 50%);
}

.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.8vw;
    line-height: 1.5;
  }
}

.worries-bubble__count {
  font-family: "din-2014", sans-serif;
  width: 99px;
  height: 28px;
  background-image: url("/content_assets/60rm1/img/worries-bubble__count-bg.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  padding-left: 8px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .worries-bubble__count {
    width: 7.734375vw;
    height: 2.1875vw;
    padding-left: 0.625vw;
  }
}
@media (max-width: 767px) {
  .worries-bubble__count {
    width: 20.2666666667vw;
    height: 5.8666666667vw;
    padding-left: 1.0666666667vw;
  }
}

.worries-bubble__count span {
  background: linear-gradient(90deg, #009E7C 0%, #0D897E 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .worries-bubble__count span {
    font-size: 1.5625vw;
  }
}
@media (max-width: 767px) {
  .worries-bubble__count span {
    font-size: 4.2666666667vw;
  }
}

@media (max-width: 767px) {
  .worries-col:nth-child(odd) .worries-bubble__count {
    left: unset;
    right: 0;
    transform: scale(-1, 1);
  }
}

@media (max-width: 767px) {
  .worries-col:nth-child(odd) .worries-bubble__count span {
    transform: scale(-1, 1);
  }
}

.worries-col:nth-child(1) .worries-bubble__img {
  width: 94px;
  height: 160px;
  position: absolute;
  bottom: -33px;
  right: -32px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .worries-col:nth-child(1) .worries-bubble__img {
    width: 7.34375vw;
    height: 12.5vw;
    bottom: -2.578125vw;
    right: -2.5vw;
  }
}
@media (max-width: 767px) {
  .worries-col:nth-child(1) .worries-bubble__img {
    width: 20.2666666667vw;
    height: 26.6666666667vw;
    bottom: 0;
    left: 0;
    right: unset;
  }
}

.worries-col:nth-child(2) .worries-bubble__img {
  width: 106px;
  height: 160px;
  position: absolute;
  bottom: -32px;
  right: -38px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .worries-col:nth-child(2) .worries-bubble__img {
    width: 8.28125vw;
    height: 12.5vw;
    bottom: -2.5vw;
    right: -2.96875vw;
  }
}
@media (max-width: 767px) {
  .worries-col:nth-child(2) .worries-bubble__img {
    width: 22.4vw;
    height: 26.6666666667vw;
    bottom: 0;
    right: 0;
  }
}

.worries-col:nth-child(3) .worries-bubble__img {
  width: 102px;
  height: 160px;
  position: absolute;
  bottom: -32px;
  right: -32px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .worries-col:nth-child(3) .worries-bubble__img {
    width: 7.96875vw;
    height: 12.5vw;
    bottom: -2.5vw;
    right: -2.5vw;
  }
}
@media (max-width: 767px) {
  .worries-col:nth-child(3) .worries-bubble__img {
    width: 21.6vw;
    height: 26.6666666667vw;
    bottom: 0;
    left: 0;
    right: unset;
  }
}

@media (max-width: 767px) {
  .worries-col:nth-child(1) .worries-bubble__inner {
    transform: translateX(2vw);
  }
}

@media (max-width: 767px) {
  .worries-col:nth-child(2) .worries-bubble__inner {
    transform: translateX(-1.3333333333vw);
  }
}

@media (max-width: 767px) {
  .worries-col:nth-child(3) .worries-bubble__inner {
    transform: translateX(1.4666666667vw);
  }
}

.bubble-heading {
  background: linear-gradient(90deg, #2CB282 0%, #0B9FA1 100%);
}

.bubble-heading-box {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 23px 0;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .bubble-heading-box {
    gap: 0.78125vw;
    padding: 1.796875vw 0;
  }
}
@media (max-width: 767px) {
  .bubble-heading-box {
    gap: 1.0666666667vw;
    padding: 2.9333333333vw 0 5.0666666667vw;
  }
}

.bubble-heading-box::after {
  content: "";
  display: inline-block;
  width: 60px;
  height: 22px;
  background-image: url("/content_assets/60rm1/img/bubble-heading-arrow.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: -21px;
  left: 50%;
  transform: translateX(-50%);
}
@media (min-width: 767px) and (max-width: 1280px) {
  .bubble-heading-box::after {
    width: 4.6875vw;
    height: 1.71875vw;
    bottom: -1.640625vw;
  }
}
@media (max-width: 767px) {
  .bubble-heading-box::after {
    width: 11.2vw;
    height: 4.2666666667vw;
    bottom: -4vw;
  }
}

.bubble-heading-box span {
  color: #FFF;
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 1.143px;
  transform: translateY(8px);
}
@media (min-width: 767px) and (max-width: 1280px) {
  .bubble-heading-box span {
    font-size: 2.1875vw;
    transform: translateY(0.625vw);
  }
}
@media (max-width: 767px) {
  .bubble-heading-box span {
    font-size: 4.8vw;
    transform: translateY(1.6vw);
  }
}

.bubble-heading-box strong {
  color: #FFF600;
  font-size: 39px;
  font-weight: 900;
  line-height: 1;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .bubble-heading-box strong {
    font-size: 3.046875vw;
  }
}
@media (max-width: 767px) {
  .bubble-heading-box strong {
    font-size: 6.6666666667vw;
  }
}

.bubble-heading-img {
  width: 80px;
  height: 88px;
  transform: translateY(-9px);
}
@media (min-width: 767px) and (max-width: 1280px) {
  .bubble-heading-img {
    width: 6.25vw;
    height: 6.875vw;
    transform: translateY(-0.703125vw);
  }
}
@media (max-width: 767px) {
  .bubble-heading-img {
    width: 16vw;
    height: 17.3333333333vw;
    transform: translateY(-0.2666666667vw);
  }
}

.bubble-heading-logo {
  width: 163px;
  height: 50px;
  margin: 0 5px 0 0;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .bubble-heading-logo {
    width: 12.734375vw;
    height: 3.90625vw;
    margin: 0 0.390625vw 0 0;
  }
}
@media (max-width: 767px) {
  .bubble-heading-logo {
    width: 28.2666666667vw;
    height: 8.5333333333vw;
    margin: -1.8666666667vw 1.3333333333vw 0 0;
  }
}

.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.3333333333vw 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: 13.3333333333vw;
    height: 10.1333333333vw;
  }
}

.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.8666666667vw;
    height: 16.5333333333vw;
  }
}

.introduction {
  background: linear-gradient(90deg, rgba(21, 149, 125, 0.3) 0%, rgba(25, 186, 193, 0.3) 100%);
  padding-bottom: 100px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction {
    padding-bottom: 7.8125vw;
  }
}
@media (max-width: 767px) {
  .introduction {
    padding-bottom: 13.3333333333vw;
  }
}

.introduction-heading {
  display: block;
  margin: 47px auto 0;
  width: fit-content;
  background: linear-gradient(90deg, #2CB282 0%, #0C9FA0 100%);
  color: #FFF;
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  padding: 4px 10px 6px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-heading {
    margin: 3.671875vw auto 0;
    font-size: 2.03125vw;
    padding: 0.3125vw 0.78125vw 0.46875vw;
  }
}
@media (max-width: 767px) {
  .introduction-heading {
    margin: 5.3333333333vw auto 0;
    font-size: 4.5333333333vw;
  }
}

.introduction-heading__strong {
  font-size: 31px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-heading__strong {
    font-size: 2.421875vw;
  }
}
@media (max-width: 767px) {
  .introduction-heading__strong {
    font-size: 5.3333333333vw;
  }
}

.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: 0 auto;
  display: flex;
  justify-content: space-between;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-comment {
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .introduction-comment {
    display: block;
    width: calc(100% - 10.6666666667vw);
    margin: 0 5.3333333333vw 0;
  }
}

.introduction-comment-col {
  width: 466px;
  filter: drop-shadow(2px 4px 34px rgba(25, 110, 104, 0.16));
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-comment-col {
    width: 36.40625vw;
  }
}
@media (max-width: 767px) {
  .introduction-comment-col {
    width: 100%;
  }
}

.introduction-comment-col::before {
  content: "";
  display: block;
  margin: 0 auto;
  width: 26px;
  height: 80px;
  background-image: url("/content_assets/60rm1/img/introduction-comment-col-arrow.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-comment-col::before {
    width: 2.03125vw;
    height: 6.25vw;
  }
}
@media (max-width: 767px) {
  .introduction-comment-col::before {
    background-image: url("/content_assets/60rm1/img/introduction-comment-col-arrow-sp.svg");
    width: 5.8666666667vw;
    height: 16.5333333333vw;
  }
}

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

@media (max-width: 767px) {
  .introduction-comment-col + .introduction-comment-col::before {
    display: none;
  }
}

.introduction-comment-col__heading {
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  color: #fff;
  background: #1E2C31;
  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/60rm1/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: #36F8BD;
}
@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: #B9EBE2;
  width: 100%;
  text-align: center;
  padding: 9px 0 10px 0;
  color: #005F6A;
  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/60rm1/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: 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;
    -ms-writing-mode: tb-rl;
    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/60rm1/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/60rm1/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: #15C29A;
  display: block;
  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;
    -ms-writing-mode: tb-rl;
    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 #15C29A;
  }
}

.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: #1E2C31;
}
@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: #1E2C31;
  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: #1E2C31;
}
@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: #E1EEEE;
  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: #252525;
}
@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%, #FFF84D 20%);
}

.introduction-comment-col__notice {
  font-size: 10px;
  font-weight: 400;
  line-height: 1;
  text-align: right;
  color: #558481;
  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(-5.0666666667vw);
    margin: 0 auto 3.2vw;
  }
}

.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 {
  margin: 0 auto;
}

.example {
  padding: 80px 0 100px;
  background: linear-gradient(90deg, rgba(21, 149, 125, 0.2) 0%, rgba(25, 186, 193, 0.2) 100%), #FFF;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .example {
    padding: 6.25vw 0 7.8125vw;
  }
}
@media (max-width: 767px) {
  .example {
    padding: 10.6666666667vw 0;
  }
}

.example-slider {
  margin-top: 60px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .example-slider {
    margin-top: 4.6875vw;
  }
}
@media (max-width: 767px) {
  .example-slider {
    margin-top: 8vw;
    margin-bottom: 2.6666666667vw !important;
  }
}

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

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

.example-slider .slick-list {
  padding-bottom: 25px !important;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .example-slider .slick-list {
    padding-bottom: 1.953125vw !important;
  }
}
@media (max-width: 767px) {
  .example-slider .slick-list {
    padding-bottom: 6.6666666667vw !important;
  }
}

.example-slider-col {
  width: 346px;
  margin: 0 12px;
  box-shadow: 2px 12px 18px 0px rgba(25, 110, 104, 0.12);
}
@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: 78.6666666667vw;
    margin: 0 2.6666666667vw;
  }
}

.example-slider-col__income {
  border-radius: 3px;
  background: #737C82;
  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.9333333333vw 4.5333333333vw 4.5333333333vw;
    height: 13.6vw;
  }
}

.example-slider-col__income-title {
  border-radius: 3px 0 0 3px;
  background: #1E2C31;
  display: flex;
  align-items: center;
  justify-content: center;
  -ms-writing-mode: tb-rl;
  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: #3CF6BE;
}
@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.4666666667vw;
    padding: 0 1.3333333333vw;
  }
}

.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.8666666667vw;
    margin-left: 0.8vw;
    margin-right: 0.8vw;
    transform: translateY(-1.3333333333vw);
  }
}

.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: 10vw;
  }
}

.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: 4vw;
  }
}

.example-slider-col__company-name {
  color: #fff;
  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: #1E2C31;
}
@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.8vw;
    font-size: 4.5333333333vw;
  }
}

.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.2666666667vw;
  }
}

.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.5333333333vw 4.5333333333vw 0 4.5333333333vw;
  }
}

.example-slider-col__detail-title {
  color: #1E2C31;
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  padding-bottom: 16px;
  border-bottom: 1px solid #C2D0D1;
}
@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.8vw;
    padding-bottom: 3.4666666667vw;
  }
}

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

.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: 3.0666666667vw;
  }
}

.example-slider-col__detail-list-item {
  color: #1E2C31;
  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.4666666667vw;
  }
}

.example-slider-col__detail-list-item::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url("/content_assets/60rm1/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.4666666667vw;
    height: 3.4666666667vw;
    margin-right: 1.0666666667vw;
  }
}

.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.3333333333vw;
  }
}

.example-slider__notice {
  text-align: center;
  color: #558481;
  font-size: 10px;
  font-weight: 400;
  line-height: 1;
  margin-top: -15px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .example-slider__notice {
    font-size: 0.78125vw;
    margin-top: -1.171875vw;
  }
}
@media (max-width: 767px) {
  .example-slider__notice {
    font-size: 2.6666666667vw;
    margin-top: -4vw;
  }
}

.example-slider-custom-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .example-slider-custom-controls {
    margin-top: 1.5625vw;
  }
}
@media (max-width: 767px) {
  .example-slider-custom-controls {
    margin-top: -12.8vw;
    transform: translateY(-47.4666666667vw);
  }
}

.example-slider-custom-dots {
  position: relative;
  height: 4px;
  max-width: 240px;
  background-color: #fff;
  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 {
    opacity: 0;
    max-width: 68vw;
  }
}

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

.example-slider-custom-arrow {
  width: 50px;
  height: 50px;
  background-image: url("/content_assets/60rm1/img/example-slider-custom-arrow.svg");
  background-repeat: no-repeat;
  background-size: contain;
  cursor: pointer;
  position: relative;
  transition: all ease-in 0.2s;
  border-radius: 50%;
  box-shadow: 0px 2.273px 9.091px 0px rgba(25, 110, 104, 0.4);
}
@media (min-width: 767px) and (max-width: 1280px) {
  .example-slider-custom-arrow {
    width: 3.90625vw;
    height: 3.90625vw;
  }
}
@media (max-width: 767px) {
  .example-slider-custom-arrow {
    width: 13.3333333333vw;
    height: 13.3333333333vw;
  }
}

.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: 0;
  }
}

.example-slider-custom-next {
  margin-left: 15px;
  transform: scale(-1, 1);
}
@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: 0;
  }
}

.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.5333333333vw);
  }
}

.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.6666666667vw;
    height: 3.2vw;
    margin: 0 1.3333333333vw;
  }
}

.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.6666666667vw;
    height: 3.2vw;
  }
}

.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.6666666667vw;
    height: 3.2vw;
    font-size: 2.6666666667vw;
  }
}

.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.3333333333vw;
  }
}

.example-btn {
  margin: 0 auto;
}

.support {
  background: linear-gradient(90deg, rgba(21, 149, 125, 0.2) 0%, rgba(25, 186, 193, 0.2) 100%), #FFF;
}

.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.2666666667vw;
    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.5333333333vw;
    font-size: 6.9333333333vw;
    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(-5.0666666667vw);
    margin: 0 auto 3.2vw;
  }
}

.support-relay-arrow2 {
  margin: 35px auto 0;
  padding-bottom: 25px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support-relay-arrow2 {
    margin: 2.734375vw auto 0;
    padding-bottom: 1.953125vw;
  }
}
@media (max-width: 767px) {
  .support-relay-arrow2 {
    margin: 3.2vw auto 0;
    padding-bottom: 0;
  }
}

.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: 5.3333333333vw;
  }
}

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

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

.support-col__inner {
  width: 300px;
  position: relative;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.12) 100%), linear-gradient(90deg, #01CF97 0%, #08CBB1 100%);
  border-radius: 4px;
  box-shadow: 2px 4px 16px 0px rgba(25, 110, 104, 0.14);
}
@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.6666666667vw);
    margin: 0 5.3333333333vw;
  }
}

.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: 20.2666666667vw;
  }
}

.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.8vw;
  }
}

.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.3333333333vw;
  }
}

.support-col__textarea {
  text-align: center;
  height: 174px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  background-color: #fff;
  border-left: 4px solid rgba(43, 184, 155, 0.6);
  border-right: 4px solid rgba(43, 184, 155, 0.6);
  border-bottom: 4px solid rgba(43, 184, 155, 0.6);
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support-col__textarea {
    height: 13.59375vw;
  }
}
@media (max-width: 767px) {
  .support-col__textarea {
    height: 37.8666666667vw;
  }
}

.support-col__textarea1 {
  background-image: url("/content_assets/60rm1/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/60rm1/img/support-col__text1-bg_sp.png");
    background-size: 22.4vw 28.8vw;
    background-position: right 10.6666666667vw top 2.1333333333vw;
  }
}

.support-col__text1 {
  color: #1E2C31;
  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.4666666667vw;
    line-height: 1;
    transform: translateY(-25%);
  }
}

.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: 21.3333333333vw;
  }
}

.support-col__summary {
  background-image: url("/content_assets/60rm1/img/support-col__summary-bg.svg");
  background-repeat: no-repeat;
  background-position: center;
  width: 224px;
  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.5vw;
    height: 3.125vw;
  }
}
@media (max-width: 767px) {
  .support-col__summary {
    background-image: unset;
    width: 100%;
    height: 9.6vw;
    left: 0;
    transform: translate(0, 25%);
  }
}

@media (max-width: 767px) {
  .support-col__summary::before,
  .support-col__summary::after {
    content: "";
    display: inline-block;
    width: 2vw;
    height: 9.6vw;
    background-image: url("/content_assets/60rm1/img/support-col__summary-bg-scraps-sp.png");
    background-repeat: no-repeat;
    background-size: cover;
  }
}

@media (max-width: 767px) {
  .support-col__summary::before {
    margin-right: -1px;
  }
}

@media (max-width: 767px) {
  .support-col__summary::after {
    transform: scale(-1, 1);
    margin-left: -1px;
  }
}

.support-col__summary-text {
  color: #fff;
  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.8vw;
    display: flex;
    align-items: center;
    height: 9.6vw;
    background-color: #f48a00;
    padding: 0 4vw;
  }
}

.support-col__summary-text::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  background-image: url("/content_assets/60rm1/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.8vw;
    height: 4.8vw;
    margin-right: 1.6vw;
    transform: translateY(1px);
  }
}

.support-col__notice {
  color: #666;
  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: #717479;
    font-size: 2.6666666667vw;
    transform: translate(0, -9.6vw);
  }
}

.support-col__text2 {
  color: #1E2C31;
  font-size: 18px;
  font-weight: 700;
  line-height: 100%; /* 18px */
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 0 26px;
  transform: translateY(-18px);
}
@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.40625vw);
  }
}
@media (max-width: 767px) {
  .support-col__text2 {
    font-size: 4.8vw;
    gap: 3.7333333333vw;
    margin: 0 11.4666666667vw;
    transform: translateY(-3.2vw);
  }
}

.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: #2BB89B;
}

.support-col__text3 {
  color: #1E2C31;
  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.2666666667vw;
    transform: translateY(1.3333333333vw);
  }
}

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

.contact {
  background: linear-gradient(90deg, rgba(21, 149, 125, 0.2) 0%, rgba(25, 186, 193, 0.2) 100%), #FFF;
  padding-bottom: 120px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .contact {
    padding-bottom: 9.375vw;
  }
}
@media (max-width: 767px) {
  .contact {
    padding-bottom: 16vw;
  }
}

.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 {
  border-radius: 4px;
  background: linear-gradient(270deg, #0C9FA1 0%, #2DB282 100%);
  padding-top: 50px;
  padding-bottom: 70px;
  box-shadow: 2px 6px 20px 0px rgba(0, 128, 119, 0.2);
}
@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.3333333333vw;
    width: calc(100% - 10.6666666667vw);
    padding-top: 6.9333333333vw;
    padding-bottom: 6.9333333333vw;
  }
}

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

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

.contact-heading-bubble__inner {
  color: #1DA991;
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
  padding: 8px 18px;
  display: inline-block;
  background-color: #FFF600;
}
@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.7333333333vw;
    padding: 1.0666666667vw 2.1333333333vw;
  }
}

.contact-heading-main {
  color: #fff;
  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.4vw;
    margin-top: 2.6666666667vw;
  }
}

.contact-text {
  font-size: 20px;
  font-weight: 700;
  margin-top: 24px;
  text-align: center;
  color: #fff;
}
@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.2666666667vw;
    margin-top: 4.2666666667vw;
  }
}

.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.3333333333vw;
    margin-top: 6.4vw;
  }
}

.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: #1E2C31;
}
@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.6666666667vw);
    height: 14.9333333333vw;
    margin: 0 5.3333333333vw;
    font-size: 4.8vw;
  }
}

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

.contact-btn::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 14px;
  background-image: url("/content_assets/60rm1/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.1333333333vw;
    height: 3.2vw;
    top: calc(50% - 1.6vw);
    right: 4.2666666667vw;
  }
}

body {
  overflow-x: hidden;
}

@media (min-width: 1920px) {
  .fv-wrap::before {
    background-image: url("/content_assets/60re3/img/fv-bg-left.png");
  }
}

@media (min-width: 1920px) {
  .fv-wrap::after {
    background-image: url("/content_assets/60re3/img/fv-bg-right.png");
  }
}

.fv {
  background-image: url("/content_assets/60re3/img/fv-bg-pc.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow-x: hidden;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .fv {
    background-size: cover;
  }
}
@media (max-width: 767px) {
  .fv {
    background-image: unset;
  }
}

.fv-main-copy2,
.fv-main-copy3 {
  color: #fff600;
  text-shadow: 0px 4px 4px rgba(18, 41, 37, 0.5);
}

.fv-main-copy3 {
  font-size: 49.565px;
  margin-right: 17px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .fv-main-copy3 {
    font-size: 3.872265625vw;
    margin-right: 1.328125vw;
  }
}
@media (max-width: 767px) {
  .fv-main-copy3 {
    font-size: 9.3797333333vw;
    margin-right: 0;
  }
}

.fv-main-copy-img1,
.fv-main-copy-img2 {
  width: 26.5px;
  height: 26.5px;
  line-height: 1;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .fv-main-copy-img1,
  .fv-main-copy-img2 {
    width: 2.0703125vw;
    height: 2.03125vw;
  }
}

.fv-main-copy-img1 {
  vertical-align: 0%;
  margin: 0 10px 0 8px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .fv-main-copy-img1 {
    margin: 0 0.78125vw 0 0.625vw;
  }
}

.fv-main-copy-img2 {
  vertical-align: 10%;
  margin: 0 7px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .fv-main-copy-img2 {
    margin: 0 0.546875vw;
  }
}

.fv-notice {
  color: rgba(255, 255, 255, 0.7);
  position: absolute;
  right: 0;
  transform: translateX(calc(100% - 35px));
  opacity: 0.9;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .fv-notice {
    transform: translateX(calc(100% - 2.734375vw));
  }
}
@media (max-width: 767px) {
  .fv-notice {
    color: #656565;
    right: unset;
    left: 29.8666666667vw;
    bottom: 2.6666666667vw;
    transform: none;
    opacity: 1;
  }
}

@media (max-width: 767px) {
  .fv-cv-box {
    background: linear-gradient(180deg, #fff 0%, rgba(244, 244, 244, 0.9) 100%);
    width: 89.3333333333vw;
    height: 47.2vw;
    position: absolute;
    left: 0;
    bottom: 8.2666666667vw;
    padding: 5.3333333333vw 4vw;
    opacity: 0.86;
    box-shadow: 0 0.5333333333vw 2.6666666667vw 0 rgba(53, 61, 59, 0.34);
    border-radius: 1.6vw;
  }
}

.fv-bubble {
  position: absolute;
  background-image: url("/content_assets/60re3/img/fv-bubble.svg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 8px 13px rgba(0, 142, 182, 0.5));
  width: 155px;
  height: 155px;
  top: 45px;
  right: 75px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .fv-bubble {
    width: 12.109375vw;
    height: 12.109375vw;
    top: 3.515625vw;
    right: 5.859375vw;
  }
}
@media (max-width: 767px) {
  .fv-bubble {
    width: 29.3333333333vw;
    height: 29.3333333333vw;
    top: 43.2vw;
    right: 66.6666666667vw;
    z-index: 3;
  }
}

.fv-bubble-col {
  width: 155px;
  height: 155px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .fv-bubble-col {
    width: 12.109375vw;
    height: 12.109375vw;
  }
}
@media (max-width: 767px) {
  .fv-bubble-col {
    width: 41.3333333333vw;
    height: 41.3333333333vw;
  }
}
@media (max-width: 767px) {
  .fv-bubble-col {
    width: 29.3333333333vw;
    height: 29.3333333333vw;
  }
}

.fv-bubble2 {
  position: absolute;
  background-image: url("/content_assets/60re3/img/fv-bubble.svg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 8px 13px rgba(0, 142, 182, 0.5));
  width: 140px;
  height: 140px;
  top: 89px;
  right: -81px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .fv-bubble2 {
    width: 10.9375vw;
    height: 10.9375vw;
    top: 6.953125vw;
    right: -6.328125vw;
  }
}
@media (max-width: 767px) {
  .fv-bubble2 {
    width: 29.3333333333vw;
    height: 29.3333333333vw;
    top: 43.2vw;
    right: 35.7333333333vw;
    z-index: 3;
  }
}

.fv-bubble-col2 {
  width: 140px;
  height: 140px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .fv-bubble-col2 {
    width: 10.9375vw;
    height: 10.9375vw;
  }
}
@media (max-width: 767px) {
  .fv-bubble-col2 {
    width: 37.3333333333vw;
    height: 37.3333333333vw;
  }
}
@media (max-width: 767px) {
  .fv-bubble-col2 {
    width: 29.3333333333vw;
    height: 29.3333333333vw;
  }
}

.fv-bubble3 {
  position: absolute;
  background-image: url("/content_assets/60re3/img/fv-bubble.svg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 8px 13px rgba(0, 142, 182, 0.5));
  width: 134px;
  height: 134px;
  top: 212px;
  right: 23px;
  background-image: url("/content_assets/60re3/img/fv-bubble3.svg");
}
@media (min-width: 767px) and (max-width: 1280px) {
  .fv-bubble3 {
    width: 10.46875vw;
    height: 10.46875vw;
    top: 16.5625vw;
    right: 1.796875vw;
  }
}
@media (max-width: 767px) {
  .fv-bubble3 {
    width: 29.3333333333vw;
    height: 29.3333333333vw;
    top: 70.4vw;
    right: 51.4666666667vw;
    z-index: 3;
  }
}

.fv-bubble-col3 {
  width: 134px;
  height: 134px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .fv-bubble-col3 {
    width: 10.46875vw;
    height: 10.46875vw;
  }
}
@media (max-width: 767px) {
  .fv-bubble-col3 {
    width: 35.7333333333vw;
    height: 35.7333333333vw;
  }
}
@media (max-width: 767px) {
  .fv-bubble-col3 {
    width: 29.3333333333vw;
    height: 29.3333333333vw;
  }
}

.fv-bubble-text1 {
  color: #f48a00;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-weight: 900;
  line-height: 110%;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .fv-bubble-text1 {
    font-size: 1.25vw;
  }
}
@media (max-width: 767px) {
  .fv-bubble-text1 {
    font-size: 3.2vw;
  }
}
.fv-bubble-text1 small {
  font-size: 11px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .fv-bubble-text1 small {
    font-size: 0.859375vw;
  }
}
@media (max-width: 767px) {
  .fv-bubble-text1 small {
    font-size: 2.6666666667vw;
  }
}
.fv-bubble-text1 {
  margin-top: 40.53px;
  margin-bottom: 10.46px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .fv-bubble-text1 {
    margin-top: 3.16640625vw;
    margin-bottom: 0.8171875vw;
  }
}
@media (max-width: 767px) {
  .fv-bubble-text1 {
    margin-top: 7.4666666667vw;
    margin-bottom: 1.8666666667vw;
  }
}

.fv-bubble-text2 {
  background: linear-gradient(125deg, #3fb5ad 28.72%, #12878e 70.42%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "ff-din-paneuropean", sans-serif;
  font-size: 39px;
  font-style: normal;
  font-weight: 700;
  line-height: 23.5px;
  letter-spacing: -1.95px;
  text-align: center;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .fv-bubble-text2 {
    font-size: 3.046875vw;
    line-height: 1.8359375vw;
    letter-spacing: -0.15234375vw;
  }
}
@media (max-width: 767px) {
  .fv-bubble-text2 {
    font-size: 10.4vw;
    line-height: 6.2666666667vw;
    letter-spacing: -0.52vw;
  }
}
@media (max-width: 767px) {
  .fv-bubble-text2 {
    font-size: 7.3805333333vw;
    line-height: 4.2666666667vw;
    letter-spacing: -0.3690666667vw;
  }
}
.fv-bubble-text2 strong {
  font-size: 27px;
  letter-spacing: -3.78px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .fv-bubble-text2 strong {
    font-size: 2.109375vw;
    letter-spacing: -0.2953125vw;
  }
}
@media (max-width: 767px) {
  .fv-bubble-text2 strong {
    font-size: 5.1096vw;
    letter-spacing: -0.7154666667vw;
  }
}
.fv-bubble-text2 .zero {
  letter-spacing: -3.12px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .fv-bubble-text2 .zero {
    letter-spacing: -0.24375vw;
  }
}
@media (max-width: 767px) {
  .fv-bubble-text2 .zero {
    letter-spacing: -0.5904vw;
  }
}
.fv-bubble-text2 small {
  color: #12878e;
  -webkit-text-fill-color: #12878e;
  font-size: 17px;
  font-weight: 900;
  font-style: normal;
  letter-spacing: -1.7px;
  font-family: "Noto Sans JP";
  margin-left: 2px;
  display: inline-block;
  transform: translateY(-2px);
  position: relative;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .fv-bubble-text2 small {
    font-size: 1.328125vw;
    letter-spacing: -0.1328125vw;
    margin-left: 0.15625vw;
    transform: translateY(-0.15625vw);
  }
}
@media (max-width: 767px) {
  .fv-bubble-text2 small {
    font-size: 3.2vw;
    letter-spacing: -0.32vw;
    margin-left: 0.4vw;
    transform: translateY(-0.5333333333vw);
  }
}
.fv-bubble-text2 small::before {
  content: "※1";
  position: absolute;
  top: -15px;
  left: 55%;
  transform: translateX(-50%);
  font-size: 9px;
  color: #12878e;
  -webkit-text-fill-color: #12878e;
  font-weight: 400;
  letter-spacing: -0.9px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .fv-bubble-text2 small::before {
    top: -1.171875vw;
    font-size: 0.703125vw;
    letter-spacing: -0.0703125vw;
  }
}
@media (max-width: 767px) {
  .fv-bubble-text2 small::before {
    top: -2.9333333333vw;
    left: 65%;
    font-size: 2.4vw;
    letter-spacing: -0.24vw;
  }
}

.fv-bubble-text3 {
  color: #f48a00;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-weight: 900;
  line-height: 110%;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .fv-bubble-text3 {
    font-size: 1.25vw;
  }
}
@media (max-width: 767px) {
  .fv-bubble-text3 {
    font-size: 3.2vw;
  }
}
.fv-bubble-text3 small {
  font-size: 11px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .fv-bubble-text3 small {
    font-size: 0.859375vw;
  }
}
@media (max-width: 767px) {
  .fv-bubble-text3 small {
    font-size: 2.6666666667vw;
  }
}
.fv-bubble-text3 {
  margin-top: 36.77px;
  margin-bottom: 6.23px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .fv-bubble-text3 {
    margin-top: 2.87265625vw;
    margin-bottom: 0.48671875vw;
  }
}
@media (max-width: 767px) {
  .fv-bubble-text3 {
    margin-top: 7.4666666667vw;
    margin-bottom: 1.8666666667vw;
  }
}

.fv-bubble-text4 {
  color: #f48a00;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-weight: 900;
  line-height: 110%;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .fv-bubble-text4 {
    font-size: 1.25vw;
  }
}
@media (max-width: 767px) {
  .fv-bubble-text4 {
    font-size: 3.2vw;
  }
}
.fv-bubble-text4 small {
  font-size: 11px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .fv-bubble-text4 small {
    font-size: 0.859375vw;
  }
}
@media (max-width: 767px) {
  .fv-bubble-text4 small {
    font-size: 2.6666666667vw;
  }
}
.fv-bubble-text4 {
  position: relative;
  z-index: 2;
  margin-top: 38.34px;
  margin-bottom: 0;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .fv-bubble-text4 {
    margin-top: 2.9953125vw;
    margin-bottom: 0vw;
  }
}
@media (max-width: 767px) {
  .fv-bubble-text4 {
    margin-top: 8.392vw;
  }
}

.fv-bubble-text5 {
  background: linear-gradient(125deg, #3fb5ad 28.72%, #12878e 70.42%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "ff-din-paneuropean", sans-serif;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 21px;
  letter-spacing: -2.88px;
  text-align: center;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .fv-bubble-text5 {
    font-size: 2.8125vw;
    line-height: 1.640625vw;
    letter-spacing: -0.225vw;
  }
}
@media (max-width: 767px) {
  .fv-bubble-text5 {
    font-size: 9.6vw;
    line-height: 5.6vw;
    letter-spacing: -0.768vw;
  }
}
@media (max-width: 767px) {
  .fv-bubble-text5 {
    font-size: 7.3333333333vw;
    line-height: 4.2666666667vw;
    letter-spacing: -0.5866666667vw;
  }
}
.fv-bubble-text5 strong {
  color: #3db3ab;
  -webkit-text-fill-color: #3db3ab;
  font-size: 10px;
  letter-spacing: 0.1px;
  font-family: "Noto Sans JP";
  font-weight: 900;
  display: inline-block;
  transform: translateY(-1px);
  position: relative;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .fv-bubble-text5 strong {
    font-size: 0.78125vw;
    letter-spacing: 0.0078125vw;
    transform: translateY(-0.078125vw);
  }
}
@media (max-width: 767px) {
  .fv-bubble-text5 strong {
    font-size: 2.1333333333vw;
    letter-spacing: 0.0213333333vw;
    transform: translateY(-0.2666666667vw);
  }
}
.fv-bubble-text5 small {
  color: #f48a00;
  -webkit-text-fill-color: #f48a00;
  font-size: 18px;
  font-weight: 700;
  font-style: normal;
  letter-spacing: -0.54px;
  font-family: "Noto Sans JP";
  margin-left: 2px;
  display: inline-block;
  transform: translateY(-1px);
  position: relative;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .fv-bubble-text5 small {
    font-size: 1.40625vw;
    letter-spacing: -0.0421875vw;
    margin-left: 0.15625vw;
    transform: translateY(-0.078125vw);
  }
}
@media (max-width: 767px) {
  .fv-bubble-text5 small {
    font-size: 3.7333333333vw;
    letter-spacing: -0.112vw;
    margin-left: 0.4vw;
    transform: translateY(-0.2666666667vw);
  }
}
.fv-bubble-text5 small::before {
  content: "※2";
  position: absolute;
  top: -13px;
  left: 73%;
  transform: translateX(-50%);
  font-size: 9px;
  color: #12878e;
  -webkit-text-fill-color: #12878e;
  font-weight: 400;
  letter-spacing: -0.9px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .fv-bubble-text5 small::before {
    top: -1.015625vw;
    font-size: 0.703125vw;
    letter-spacing: -0.0703125vw;
  }
}
@media (max-width: 767px) {
  .fv-bubble-text5 small::before {
    top: -2.9333333333vw;
    left: 65%;
    font-size: 2.4vw;
    letter-spacing: -0.24vw;
  }
}
.fv-bubble-text5 .unit {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 13px;
  line-height: 1;
  color: #12878e;
  -webkit-text-fill-color: #12878e;
  font-weight: 900;
  font-family: "Noto Sans JP";
  display: inline-block;
  transform: translateY(-1px);
  letter-spacing: -0.13px;
  margin-left: 2px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .fv-bubble-text5 .unit {
    font-size: 1.015625vw;
    transform: translateY(-0.078125vw);
    letter-spacing: -0.01015625vw;
    margin-left: 0.15625vw;
  }
}
@media (max-width: 767px) {
  .fv-bubble-text5 .unit {
    font-size: 2.6666666667vw;
    transform: translateY(-0.2666666667vw);
    letter-spacing: -0.0266666667vw;
    margin-left: 0.2666666667vw;
  }
}

.worries {
  padding: 0px 0 90px 0;
  background-color: #f0f3f3;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .worries {
    padding: 0 0 7.03125vw 0;
  }
}
@media (max-width: 767px) {
  .worries {
    padding: 0 0 8vw 0;
  }
}

.worries-bubble__inner {
  color: #005f6a;
  text-align: center;
  font-size: 18px;
  font-weight: 900;
  line-height: 160%;
}
@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.7333333333vw;
    line-height: 1.5;
  }
}

.worries-bubble__inner span {
  background: linear-gradient(transparent 50%, #f7f7f7 50%);
}

.worries-bubble__inner strong {
  font-size: 22px;
  font-weight: 900;
  line-height: 160%;
}
@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.8vw;
    line-height: 1.5;
  }
}

.introduction-comment {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 80px;
  margin-bottom: 60px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-comment {
    gap: 3.75vw;
    margin-top: 6.25vw;
    margin-bottom: 4.6875vw;
  }
}
@media (max-width: 767px) {
  .introduction-comment {
    flex-direction: column;
    align-items: center;
    gap: 2.6666666667vw;
    margin-top: 8.5333333333vw;
    margin-bottom: 10.9333333333vw;
  }
}

.introduction-comment-col {
  width: 466px;
  height: 397px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: drop-shadow(4px 4px 30px rgba(25, 110, 104, 0.3));
  position: relative;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-comment-col {
    width: 36.40625vw;
    height: 31.015625vw;
    filter: drop-shadow(0.3125vw 0.3125vw 2.34375vw rgba(25, 110, 104, 0.3));
  }
}
@media (max-width: 767px) {
  .introduction-comment-col {
    width: 89.3333333333vw;
    height: 120.2666666667vw;
    filter: drop-shadow(1.0666666667vw 1.0666666667vw 8vw rgba(25, 110, 104, 0.3));
  }
}
.introduction-comment-col:nth-child(1) {
  background-image: url("/content_assets/60re3/img/introduction-card-bg1-pc.webp");
}
@media (max-width: 767px) {
  .introduction-comment-col:nth-child(1) {
    background-image: url("/content_assets/60re3/img/introduction-card-bg1-sp.webp");
  }
}
.introduction-comment-col:nth-child(2) {
  background-image: url("/content_assets/60re3/img/introduction-card-bg2-pc.webp");
}
@media (max-width: 767px) {
  .introduction-comment-col:nth-child(2) {
    background-image: url("/content_assets/60re3/img/introduction-card-bg2-sp.webp");
    height: 124vw;
  }
}

.introduction-comment-col__inner {
  width: 290px;
  height: 23px;
  margin-left: 151px;
  margin-top: 35px;
  color: #fff;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 13px;
  font-style: normal;
  font-weight: 900;
  line-height: 100%;
  letter-spacing: 0.78px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-comment-col__inner {
    width: 22.65625vw;
    height: 1.796875vw;
    margin-left: 11.796875vw;
    margin-top: 2.734375vw;
    font-size: 1.015625vw;
    letter-spacing: 0.0609375vw;
  }
}
@media (max-width: 767px) {
  .introduction-comment-col__inner {
    width: 76vw;
    height: 6.4vw;
    margin-left: 6.6666666667vw;
    margin-top: 25.8666666667vw;
    color: var(--green_text01, #005f6a);
    font-size: 3.7333333333vw;
    letter-spacing: 0.224vw;
  }
}

.introduction-comment-col__list {
  width: 290px;
  height: 74px;
  margin-top: 9px;
  margin-left: 170px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-comment-col__list {
    width: 22.65625vw;
    height: 5.78125vw;
    margin-top: 0.703125vw;
    margin-left: 13.28125vw;
  }
}
@media (max-width: 767px) {
  .introduction-comment-col__list {
    width: 76vw;
    height: 24.5333333333vw;
    margin-top: 2.6666666667vw;
    margin-left: 12.2666666667vw;
  }
}
.introduction-comment-col__list p {
  color: var(--black_text, #1e2c31);
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0.7px;
  margin: 0 0 15px 0;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-comment-col__list p {
    font-size: 1.09375vw;
    letter-spacing: 0.0546875vw;
    margin-bottom: 1.171875vw;
  }
}
@media (max-width: 767px) {
  .introduction-comment-col__list p {
    font-size: 3.7333333333vw;
    letter-spacing: 0.1866666667vw;
    margin-bottom: 5.0666666667vw;
  }
}
.introduction-comment-col__list p:last-child {
  margin-bottom: 0;
}
.introduction-comment-col__list strong {
  color: #005f6a;
  font-weight: 900;
}

.introduction-comment-col__type {
  position: absolute;
  top: 125px;
  left: 45px;
  color: #19727a;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-comment-col__type {
    top: 9.765625vw;
    left: 3.515625vw;
    font-size: 1.09375vw;
  }
}
@media (max-width: 767px) {
  .introduction-comment-col__type {
    top: 11.8666666667vw;
    left: 13.3333333333vw;
    color: #fff;
    font-size: 4vw;
    white-space: nowrap;
  }
}

.introduction-comment-col::before {
  content: "";
  position: absolute;
  top: -80px;
  left: 47%;
  width: 26px;
  height: 80px;
  background-image: url("/content_assets/60rm1/img/introduction-comment-col-arrow.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-comment-col::before {
    top: -6.25vw;
    width: 2.03125vw;
    height: 6.25vw;
  }
}
@media (max-width: 767px) {
  .introduction-comment-col::before {
    background-image: url("/content_assets/60rm1/img/introduction-comment-col-arrow-sp.svg");
    top: -8vw;
    width: 5.8666666667vw;
    height: 16.5333333333vw;
  }
}

.introduction-comment-col__info {
  display: flex;
  width: 100%;
  min-height: 255px;
  gap: 20px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-comment-col__info {
    gap: 1.5625vw;
    min-height: 19.921875vw;
  }
}
@media (max-width: 767px) {
  .introduction-comment-col__info {
    gap: 4vw;
    min-height: 60.5333333333vw;
  }
}
.introduction-comment-col__info-left {
  flex: 1;
  width: 50%;
}
.introduction-comment-col__info-right {
  flex: 1;
  width: 50%;
}

.introduction-comment-col__info-left-title,
.introduction-comment-col__info-right-title {
  position: relative;
  top: 33px;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 900;
  line-height: 100%;
  letter-spacing: 0.8px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-comment-col__info-left-title,
  .introduction-comment-col__info-right-title {
    top: 2.578125vw;
    font-size: 1.25vw;
    letter-spacing: 0.0625vw;
  }
}
@media (max-width: 767px) {
  .introduction-comment-col__info-left-title,
  .introduction-comment-col__info-right-title {
    top: 6.1333333333vw;
    font-size: 3.7333333333vw;
    letter-spacing: 0.1866666667vw;
  }
}

.introduction-comment-col__info-left-title {
  color: #fff;
  text-align: center;
  left: 92px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-comment-col__info-left-title {
    left: 7.1875vw;
  }
}
@media (max-width: 767px) {
  .introduction-comment-col__info-left-title {
    left: 14.1333333333vw;
  }
}

.introduction-comment-col__info-right-title {
  color: #005f6a;
  left: 81px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-comment-col__info-right-title {
    left: 6.328125vw;
  }
}
@media (max-width: 767px) {
  .introduction-comment-col__info-right-title {
    left: 14.1333333333vw;
  }
}

.introduction-comment-col__info-left-salary {
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 80px;
  margin-bottom: 20px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-comment-col__info-left-salary {
    gap: 0.46875vw;
    margin-top: 6.25vw;
    margin-bottom: 1.5625vw;
  }
}
@media (max-width: 767px) {
  .introduction-comment-col__info-left-salary {
    gap: 1.0666666667vw;
    margin-top: 18.6666666667vw;
    margin-bottom: 4.2666666667vw;
  }
}

.introduction-comment-col__info-left-salary-sub {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  color: var(--gray, #475956);
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 900;
  line-height: 100%;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-comment-col__info-left-salary-sub {
    font-size: 1.09375vw;
  }
}
@media (max-width: 767px) {
  .introduction-comment-col__info-left-salary-sub {
    font-size: 3.2vw;
  }
}

.introduction-comment-col__info-left-salary-main {
  color: var(--gray, #475956);
  text-align: center;
  font-family: "din-2014", sans-serif;
  font-size: 50px;
  font-style: normal;
  font-weight: 800;
  line-height: 90%;
  letter-spacing: -1.5px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-comment-col__info-left-salary-main {
    font-size: 3.90625vw;
    letter-spacing: -0.1171875vw;
  }
}
@media (max-width: 767px) {
  .introduction-comment-col__info-left-salary-main {
    font-size: 10.6666666667vw;
    letter-spacing: -0.32vw;
  }
}

.introduction-comment-col__info-left-sub {
  display: block;
  color: var(--gray, #475956);
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  margin-left: 38.5px;
  margin-bottom: 10px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-comment-col__info-left-sub {
    font-size: 1.09375vw;
    margin-left: 3.0078125vw;
    margin-bottom: 0.78125vw;
  }
}
@media (max-width: 767px) {
  .introduction-comment-col__info-left-sub {
    font-size: 3.4666666667vw;
    margin-left: 2.8vw;
    margin-bottom: 2.6666666667vw;
  }
}

.introduction-comment-col__info-right-salary {
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-top: 56.51px;
  margin-bottom: 15px;
  margin-right: 12.5px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-comment-col__info-right-salary {
    gap: 0.3125vw;
    margin-top: 4.41484375vw;
    margin-bottom: 1.171875vw;
    margin-right: 0.9765625vw;
  }
}
@media (max-width: 767px) {
  .introduction-comment-col__info-right-salary {
    gap: 0.8vw;
    margin-top: 10.6666666667vw;
    margin-bottom: 4vw;
    margin-right: 3.6vw;
  }
}

.introduction-comment-col__info-right-salary-sub {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  color: #fff;
  text-shadow: 2px 2px 2px rgba(0, 112, 100, 0.4);
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 900;
  line-height: 100%;
  position: relative;
  top: 4px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-comment-col__info-right-salary-sub {
    font-size: 1.09375vw;
    top: 0.3125vw;
    text-shadow: 0.15625vw 0.15625vw 0.15625vw rgba(0, 112, 100, 0.4);
  }
}
@media (max-width: 767px) {
  .introduction-comment-col__info-right-salary-sub {
    font-size: 3.2vw;
    top: 0.2666666667vw;
    text-shadow: 0.5333333333vw 0.5333333333vw 0.5333333333vw rgba(0, 112, 100, 0.4);
  }
}

.introduction-comment-col__info-right-salary-main {
  color: #fff;
  text-shadow: 2px 2px 2px rgba(0, 112, 100, 0.4);
  text-align: center;
  font-family: "din-2014", sans-serif;
  font-size: 58px;
  font-style: normal;
  font-weight: 800;
  line-height: 90%;
  letter-spacing: -1.74px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-comment-col__info-right-salary-main {
    font-size: 4.53125vw;
    letter-spacing: -0.1359375vw;
    text-shadow: 0.15625vw 0.15625vw 0.15625vw rgba(0, 112, 100, 0.4);
  }
}
@media (max-width: 767px) {
  .introduction-comment-col__info-right-salary-main {
    font-size: 12.8vw;
    letter-spacing: -0.256vw;
    text-shadow: 0.5333333333vw 0.5333333333vw 0.5333333333vw rgba(0, 112, 100, 0.4);
  }
}

.introduction-comment-col__info-right-sub {
  display: block;
  color: #fff;
  text-shadow: 1px 1px 3px #009481;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  margin-left: 38.5px;
  margin-bottom: 10px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-comment-col__info-right-sub {
    font-size: 1.09375vw;
    text-shadow: 0.078125vw 0.078125vw 0.234375vw #009481;
    margin-left: 3.0078125vw;
    margin-bottom: 0.78125vw;
  }
}
@media (max-width: 767px) {
  .introduction-comment-col__info-right-sub {
    font-size: 3.4666666667vw;
    text-shadow: 0.2666666667vw 0.2666666667vw 0.8vw #009481;
    margin-left: 3.0666666667vw;
    margin-bottom: 2.6666666667vw;
  }
}
.introduction-comment-col__info-right-sub strong {
  color: #ffe500;
}
.introduction-comment-col__info-right-sub small {
  font-size: 14px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-comment-col__info-right-sub small {
    font-size: 1.09375vw;
  }
}
@media (max-width: 767px) {
  .introduction-comment-col__info-right-sub small {
    font-size: 3.4666666667vw;
    margin-left: 2.6666666667vw;
    line-height: 140%;
  }
}

@media (max-width: 767px) {
  .introduction-comment-col + .introduction-comment-col {
    margin-top: 0vw;
  }
}
@media (max-width: 767px) {
  .introduction-comment-col + .introduction-comment-col .introduction-comment-col__inner {
    margin-top: 26.4vw;
  }
}
@media (max-width: 767px) {
  .introduction-comment-col + .introduction-comment-col .introduction-comment-col__type {
    top: 12.6666666667vw;
  }
}
@media (max-width: 767px) {
  .introduction-comment-col + .introduction-comment-col .introduction-comment-col__info {
    min-height: 63.7333333333vw;
  }
}
@media (max-width: 767px) {
  .introduction-comment-col + .introduction-comment-col .introduction-comment-col__info-right-title {
    left: 12.8vw;
  }
}
.introduction-comment-col + .introduction-comment-col .introduction-comment-col__info-left-sub {
  margin-left: 81.5px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-comment-col + .introduction-comment-col .introduction-comment-col__info-left-sub {
    margin-left: 6.3671875vw;
  }
}
@media (max-width: 767px) {
  .introduction-comment-col + .introduction-comment-col .introduction-comment-col__info-left-sub {
    margin-left: 12.2666666667vw;
  }
}
@media (max-width: 767px) {
  .introduction-comment-col + .introduction-comment-col .introduction-comment-col__info-right-sub {
    margin-left: 8.4vw;
  }
}

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

.worries-notice-area {
  height: 80px;
  text-align: center;
  padding-top: 10px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .worries-notice-area {
    height: 6.25vw;
    padding-top: 0.78125vw;
  }
}
@media (max-width: 767px) {
  .worries-notice-area {
    height: 16vw;
    padding-top: 2.1333333333vw;
  }
}

.worries-notice {
  color: #666;
  font-family: "Noto Sans JP";
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .worries-notice {
    font-size: 0.78125vw;
  }
}
@media (max-width: 767px) {
  .worries-notice {
    font-size: 2.1333333333vw;
  }
}

@media (max-width: 767px) {
  .bubble-heading-box {
    padding: 3.4666666667vw 0vw;
  }
}
.bubble-heading-box span {
  font-size: 28.569px;
  transform: unset;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .bubble-heading-box span {
    font-size: 2.231953125vw;
    transform: unset;
  }
}
@media (max-width: 767px) {
  .bubble-heading-box span {
    font-size: 4.9424vw;
    transform: unset;
    letter-spacing: 0.2965333333vw;
    line-height: 8.5333333333vw;
  }
}
.bubble-heading-box strong {
  font-size: 39.283px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .bubble-heading-box strong {
    font-size: 3.068984375vw;
  }
}
@media (max-width: 767px) {
  .bubble-heading-box strong {
    font-size: 6.7957333333vw;
    letter-spacing: 0.136vw;
  }
}

.support-col__text1 {
  color: var(--green_text01, #005f6a);
  font-family: "Noto Sans JP";
  font-size: 21px;
  font-style: normal;
  font-weight: 700;
  line-height: 80%;
  letter-spacing: -0.42px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support-col__text1 {
    font-size: 1.640625vw;
    letter-spacing: -0.0328125vw;
  }
}
@media (max-width: 767px) {
  .support-col__text1 {
    font-size: 4.8224vw;
    letter-spacing: -0.0962666667vw;
  }
}
.support-col__text1 .zero {
  font-family: "ff-din-paneuropean", sans-serif;
  font-size: 62px;
  letter-spacing: -2.48px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support-col__text1 .zero {
    font-size: 4.84375vw;
    letter-spacing: -0.19375vw;
  }
}
@media (max-width: 767px) {
  .support-col__text1 .zero {
    font-size: 15.9973333333vw;
    letter-spacing: -0.64vw;
  }
}
.support-col__text1 strong {
  font-family: "ff-din-paneuropean", sans-serif;
  font-size: 62px;
  letter-spacing: -3.82px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support-col__text1 strong {
    font-size: 4.84375vw;
    letter-spacing: -0.2984375vw;
  }
}
@media (max-width: 767px) {
  .support-col__text1 strong {
    font-size: 15.9973333333vw;
    letter-spacing: -0.7997333333vw;
  }
}
.support-col__text1 small {
  font-family: "ff-din-paneuropean", sans-serif;
  font-size: 50px;
  letter-spacing: -3.5px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support-col__text1 small {
    font-size: 3.90625vw;
    letter-spacing: -0.2734375vw;
  }
}
@media (max-width: 767px) {
  .support-col__text1 small {
    font-size: 11.9978666667vw;
    letter-spacing: -0.9597333333vw;
  }
}

.support-col__summary {
  background-image: url("/content_assets/60rm1/img/support-col__summary-bg.svg");
  background-repeat: no-repeat;
  background-position: center;
  width: 224px;
  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.5vw;
    height: 3.125vw;
    background-size: 100% 100%;
  }
}
@media (max-width: 767px) {
  .support-col__summary {
    background-image: unset;
    background-size: unset;
    width: 100%;
    height: 9.6vw;
    left: 0;
    transform: translate(0, 25%);
  }
}

@media (max-width: 767px) {
  .support-col__summary::before,
  .support-col__summary::after {
    content: "";
    display: inline-block;
    width: 2vw;
    height: 9.6vw;
    background-image: url("/content_assets/60rm1/img/support-col__summary-bg-scraps-sp.png");
    background-repeat: no-repeat;
    background-size: cover;
  }
}

@media (max-width: 767px) {
  .support-col__summary::before {
    margin-right: -1px;
  }
}

@media (max-width: 767px) {
  .support-col__summary::after {
    transform: scale(-1, 1);
    margin-left: -1px;
  }
}

.support-col__summary2 {
  background-image: url("/content_assets/60re3/img/support-col__summary2-bg.svg");
  background-repeat: no-repeat;
  background-position: center;
  width: 260px;
  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__summary2 {
    width: 20.3125vw;
    height: 3.125vw;
    background-size: 100% 100%;
  }
}
@media (max-width: 767px) {
  .support-col__summary2 {
    background-image: unset;
    background-size: unset;
    width: 69.8666666667vw;
    height: 9.6vw;
    left: 9.6vw;
    transform: translate(0, 25%);
  }
}

@media (max-width: 767px) {
  .support-col__summary2::before,
  .support-col__summary2::after {
    content: "";
    display: inline-block;
    width: 2vw;
    height: 9.6vw;
    background-image: url("/content_assets/60rm1/img/support-col__summary-bg-scraps-sp.png");
    background-repeat: no-repeat;
    background-size: cover;
  }
}

@media (max-width: 767px) {
  .support-col__summary2::before {
    margin-right: -1px;
  }
}

@media (max-width: 767px) {
  .support-col__summary2::after {
    transform: scale(-1, 1);
    margin-left: -1px;
  }
}

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

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

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

.introduction-heading {
  display: block;
  margin: 47px auto 0;
  width: fit-content;
  background: linear-gradient(90deg, #2cb282 0%, #0c9fa0 100%);
  color: #fff;
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  padding: 4px 10px 6px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-heading {
    margin: 3.671875vw auto 0;
    font-size: 2.03125vw;
    padding: 0.3125vw 0.78125vw 0.46875vw;
  }
}
@media (max-width: 767px) {
  .introduction-heading {
    margin: 5.3333333333vw auto 0;
    padding: 2.1333333333vw 2.6666666667vw;
    font-size: 4.2666666667vw;
    border: 0.2666666667vw solid #029995;
    background: #fff;
    color: var(--green_text01, #005f6a);
    font-weight: 900;
    letter-spacing: 0.2133333333vw;
  }
}

.introduction-heading__strong {
  font-size: 31px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .introduction-heading__strong {
    font-size: 2.421875vw;
  }
}
@media (max-width: 767px) {
  .introduction-heading__strong {
    background: var(--green_gradation_text, linear-gradient(180deg, #2ab185 0%, #029995 100%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 5.3333333333vw;
    letter-spacing: 0.2666666667vw;
  }
}

@media (max-width: 767px) {
  .introduction-heading__small {
    background: var(--green_gradation_text, linear-gradient(180deg, #2ab185 0%, #029995 100%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 4.5333333333vw;
    letter-spacing: 0.2266666667vw;
  }
}/*# sourceMappingURL=index.css.map */