@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;
  -webkit-transition: all ease-in 0.2s;
  transition: all ease-in 0.2s;
}
a:hover {
  opacity: 0.7;
}

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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

a,
button {
  outline: 0;
}

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

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

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

dl,
p {
  margin: 0;
}

dl {
  padding: 0;
}

dd {
  margin: 0;
}

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

em {
  font-style: normal;
}

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

.header {
  z-index: 10;
  width: 100%;
  background-color: #fff;
}
.header .header_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          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 {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      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 {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .header .header_inner .header_logo-container .header_logo-text {
    font-size: 10px;
    margin-bottom: 5px;
  }
}
.header .header_inner .header_link-container {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-align: center;
      -ms-flex-align: center;
          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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  gap: 7px;
}

@media (max-width: 767px) {
  .header_logo-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

body {
  margin: auto;
  color: #333;
  line-height: 1.5;
  overflow-wrap: break-word;
  overscroll-behavior-y: none;
  -webkit-font-feature-settings: "palt";
          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 {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 30px;
}
@media (max-width: 767px) {
  .footer_inner {
    padding: 30px 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.footer_inner .footer_flex-container {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}
@media (max-width: 767px) {
  .footer_inner .footer_flex-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.footer_inner .footer_flex-container .footer_link-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
}
@media (max-width: 767px) {
  .footer_inner .footer_flex-container .footer_link-list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            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 {
    -webkit-transform: translateY(-33%);
            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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      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: -webkit-box;
  display: -ms-flexbox;
  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 {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            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: -webkit-box;
  display: -ms-flexbox;
  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-content {
  background: #F0F0F0;
}

.header {
  background: #FFF;
  -webkit-box-shadow: 0px 5px 8px 0px rgba(201, 201, 201, 0.25);
          box-shadow: 0px 5px 8px 0px rgba(201, 201, 201, 0.25);
  position: relative;
}
@media (max-width: 767px) {
  .header {
    position: sticky;
    top: 0;
  }
}

.header-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 40px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .header-inner {
    padding: 0 3.125vw;
  }
}
@media (max-width: 767px) {
  .header-inner {
    padding: 4vw;
  }
}

.header-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 15px 0;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .header-col {
    padding: 1.171875vw 0;
  }
}
@media (max-width: 767px) {
  .header-col {
    padding: 0;
  }
}

@media (max-width: 767px) {
  .header-col:nth-child(1) {
    gap: 2.1333333333vw;
  }
}

.header-col:nth-child(1) span {
  font-family: "Yu Gothic Pr6N M", sans-serif;
  font-size: 12px;
  color: #1A1A1A;
  font-weight: 500;
}
@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%;
    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 {
    width: 20.5333333333vw;
    margin-right: 0;
  }
}

.header-link {
  font-family: "Yu Gothic Pr6N B", sans-serif;
  color: #000;
  font-size: 12px;
  font-weight: 700;
  margin-right: 32px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .header-link {
    font-size: 0.9375vw;
    margin-right: 2.5vw;
  }
}
@media (max-width: 767px) {
  .header-link {
    display: none;
  }
}

.header-link::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 10px;
  background-image: url("/content_assets/55tw/img/header-link-arrow-icon.svg");
  background-repeat: no-repeat;
  background-size: contain;
  margin-left: 4px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .header-link::after {
    width: 0.546875vw;
    height: 0.78125vw;
    margin-left: 0.3125vw;
  }
}

.header-btn {
  font-family: "Yu Gothic Pr6N B", sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  color: #FFF;
  background: #BF0101;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  border-radius: calc(infinity * 1px);
  width: 160px;
  height: 40px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .header-btn {
    font-size: 1.25vw;
    width: 12.5vw;
    height: 3.125vw;
    gap: 0.625vw;
  }
}
@media (max-width: 767px) {
  .header-btn {
    display: none;
  }
}

.header-btn::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 4px;
  background-image: url("/content_assets/55tw/img/header-btn-arrow-icon.svg");
  background-repeat: no-repeat;
  background-size: cover;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .header-btn::after {
    width: 0.625vw;
    height: 0.3125vw;
  }
}

.fv {
  background-image: url("/content_assets/55tw/img/fv-bg-pc.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.fv-inner {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  max-width: 1234px;
  position: relative;
  height: 501px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .fv-inner {
    max-width: 84.375vw;
  }
}
@media (min-width: 767px) and (max-width: 1280px) {
  .fv-inner {
    max-width: 96.40625vw;
    height: 39.140625vw;
  }
}
@media (max-width: 767px) {
  .fv-inner {
    height: unset;
  }
}

.fv-inner::after {
  content: "";
  display: inline-block;
  width: 728px;
  height: 501px;
  background-image: url("/content_assets/55tw/img/fv-tamaki-img-pc.webp");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  right: 0;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .fv-inner::after {
    width: 56.875vw;
    height: 39.140625vw;
  }
}
@media (max-width: 767px) {
  .fv-inner::after {
    display: none;
  }
}

.fv-bnr {
  width: 244px;
  position: absolute;
  z-index: 1;
  bottom: 5px;
  right: 77px;
}
@media (max-width: 767px) {
  .fv-bnr {
    right: 4.2666666667vw;
    bottom: 1.3333333333vw;
    width: 53.0666666667vw;
  }
}

.fv-content {
  width: 506px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .fv-content {
    width: 39.53125vw;
  }
}
@media (max-width: 767px) {
  .fv-content {
    width: unset;
  }
}

.cv-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 525px;
  height: 90px;
  margin: 0 auto;
  border-radius: 6px;
  background: -webkit-gradient(linear, left top, right top, from(#D10000), to(#BD0000));
  background: linear-gradient(90deg, #D10000 0%, #BD0000 100%);
  -webkit-box-shadow: 5px 5px 5px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 5px 5px 5px 0px rgba(0, 0, 0, 0.25);
  position: relative;
}
@media (max-width: 767px) {
  .cv-btn {
    width: calc(100% - 8vw);
    margin: 0 4vw;
  }
}
@media (min-width: 767px) and (max-width: 1280px) {
  .cv-btn {
    width: 41.015625vw;
    height: 7.03125vw;
  }
}
@media (max-width: 767px) {
  .cv-btn {
    height: 20vw;
  }
}

.cv-btn::after {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 6px;
  content: "";
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  opacity: 0;
  background: -webkit-gradient(linear, left top, right top, from(#F41515), to(#F60000));
  background: linear-gradient(90deg, #F41515 0%, #F60000 100%);
}

.cv-btn:hover {
  opacity: 1;
}

.cv-btn:hover::after {
  opacity: 1;
}

.cv-btn__inner {
  width: 100%;
  margin: 5px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 2;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .cv-btn__inner {
    margin: 0.390625vw;
  }
}
@media (max-width: 767px) {
  .cv-btn__inner {
    margin: 1.3333333333vw;
  }
}

.cv-btn__bubble {
  color: #BF0101;
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
  border-radius: 3px;
  background: -webkit-gradient(linear, left top, left bottom, from(#FEE484), to(#CEB865));
  background: linear-gradient(180deg, #FEE484 0%, #CEB865 100%);
  padding: 8px;
  margin-right: 8px;
}

.cv-btn__text {
  font-family: "Yu Gothic Pr6N B", sans-serif;
  color: #FFF;
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 1.44px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .cv-btn__text {
    font-size: 1.5625vw;
  }
}
@media (max-width: 767px) {
  .cv-btn__text {
    font-size: 4.8vw;
  }
}

.cv-btn__text::after {
  content: "";
  display: inline-block;
  width: 32px;
  height: 22px;
  background-image: url("/content_assets/55tw/img/cv-arrow.svg");
  background-repeat: no-repeat;
  background-size: contain;
  margin-left: 16px;
  -webkit-transform: translateY(4px);
          transform: translateY(4px);
}
@media (min-width: 767px) and (max-width: 1280px) {
  .cv-btn__text::after {
    width: 2.5vw;
    height: 1.71875vw;
    margin-left: 1.25vw;
    -webkit-transform: translateY(0.3125vw);
            transform: translateY(0.3125vw);
  }
}
@media (max-width: 767px) {
  .cv-btn__text::after {
    width: 6.9333333333vw;
    height: 4.8vw;
    margin-left: 2.1333333333vw;
    -webkit-transform: translateY(0.8vw);
            transform: translateY(0.8vw);
  }
}

.cv-btn__text b {
  font-size: 30px;
  letter-spacing: 2.08px;
  background: linear-gradient(92deg, #FEE380 0.81%, #DFC662 72.85%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .cv-btn__text b {
    font-size: 2.34375vw;
  }
}
@media (max-width: 767px) {
  .cv-btn__text b {
    font-size: 6.9333333333vw;
    letter-spacing: 0.9px;
  }
}

.cv-btn__text-img {
  width: 226px;
  height: auto;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .cv-btn__text-img {
    width: 17.65625vw;
  }
}
@media (max-width: 767px) {
  .cv-btn__text-img {
    width: 58.6666666667vw;
  }
}

.cv-middle-sec {
  background: #FFF;
  padding: 64px 0;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .cv-middle-sec {
    padding: 5vw 0;
  }
}
@media (max-width: 767px) {
  .cv-middle-sec {
    padding: 8.5333333333vw 0;
  }
}

.fv-cv-btn {
  width: 375px;
  height: 75px;
  margin: unset;
  margin-top: 40px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .fv-cv-btn {
    width: 29.296875vw;
    height: 5.859375vw;
    margin: unset;
    margin-top: 3.125vw;
  }
}
@media (max-width: 767px) {
  .fv-cv-btn {
    display: none;
  }
}

.fv-cv-btn__text {
  font-size: 18px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .fv-cv-btn__text {
    font-size: 1.40625vw;
  }
}

.fv-cv-btn__text::after {
  width: 26px;
  height: 18px;
  margin-left: 8px;
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
}
@media (min-width: 767px) and (max-width: 1280px) {
  .fv-cv-btn__text::after {
    width: 2.03125vw;
    height: 1.40625vw;
    margin-left: 0.625vw;
    -webkit-transform: translateY(0.15625vw);
            transform: translateY(0.15625vw);
  }
}

.fv-cv-btn__text b {
  font-size: 26px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .fv-cv-btn__text b {
    font-size: 2.03125vw;
  }
}

.support {
  padding: 96px 0;
  background-image: url("/content_assets/55tw/img/support-bg.webp");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support {
    padding: 7.5vw 0;
  }
}
@media (max-width: 767px) {
  .support {
    padding: 10.6666666667vw 0;
    background-size: auto;
    background-position: top;
  }
}

.support-heading1 {
  font-family: "Yu Mincho StdN B", sans-serif;
  color: #000;
  text-align: center;
  font-size: 50px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 8px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support-heading1 {
    font-size: 3.90625vw;
  }
}
@media (max-width: 767px) {
  .support-heading1 {
    font-size: 7.2vw;
    line-height: 1.4;
    letter-spacing: 3.5px;
  }
}

.support-heading-border {
  background-image: url("/content_assets/55tw/img/support-heading-border.webp");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom;
  padding: 0 5px 5px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support-heading-border {
    padding: 0 0.390625vw 0.390625vw;
  }
}

.support-note {
  font-family: "Yu Gothic Pr6N B", sans-serif;
  color: #000;
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.8;
  margin-top: 40px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support-note {
    font-size: 1.875vw;
    margin-top: 3.125vw;
  }
}
@media (max-width: 767px) {
  .support-note {
    font-size: 3.7333333333vw;
    margin-top: 6.4vw;
  }
}

.support-note .is-pc {
  display: inline !important;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support-note .is-pc {
    display: inline !important;
  }
}
@media (max-width: 767px) {
  .support-note .is-pc {
    display: none !important;
  }
}

.support-note sup {
  font-size: 12px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support-note sup {
    font-size: 0.9375vw;
  }
}
@media (max-width: 767px) {
  .support-note sup {
    font-size: 2.6666666667vw;
  }
}

.support-actual-value-box {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  margin-top: 56px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support-actual-value-box {
    max-width: 84.375vw;
  }
}
@media (max-width: 767px) {
  .support-actual-value-box {
    width: calc(100% - 8vw);
    margin: 0 4vw;
  }
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support-actual-value-box {
    gap: 1.875vw;
    margin-top: 4.375vw;
  }
}
@media (max-width: 767px) {
  .support-actual-value-box {
    gap: unset;
    margin-top: 6.4vw;
  }
}

.support-actual-value-col {
  width: calc((100% - 48px) / 3);
  text-align: center;
  border: 1px solid #D2C271;
  background-color: #FFF;
  padding: 40px 0;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support-actual-value-col {
    width: calc((100% - 3.75vw) / 3);
    padding: 3.125vw 0;
  }
}
@media (max-width: 767px) {
  .support-actual-value-col {
    width: 33.3333%;
    padding: 4.2666666667vw 0;
    border: none;
    border-top: 1px solid #D2C271;
    border-left: 1px solid #D2C271;
    border-bottom: 1px solid #D2C271;
  }
}

@media (max-width: 767px) {
  .support-actual-value-col:last-child {
    border-right: 1px solid #D2C271;
  }
}

.support-actual-value-img {
  width: 80px;
  height: 70px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support-actual-value-img {
    width: 6.25vw;
    height: 5.46875vw;
  }
}
@media (max-width: 767px) {
  .support-actual-value-img {
    width: 9.3333333333vw;
    height: 8vw;
  }
}

.support-actual-value-col-text {
  font-family: "Yu Gothic Pr6N B", sans-serif;
  color: #000;
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  margin-top: 16px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support-actual-value-col-text {
    font-size: 2.03125vw;
    margin-top: 1.25vw;
  }
}
@media (max-width: 767px) {
  .support-actual-value-col-text {
    font-size: 3.2vw;
    line-height: 1.2;
    margin-top: 4.2666666667vw;
  }
}

.support-actual-value-num {
  font-family: "Yu Mincho StdN B", sans-serif;
  font-size: 105px;
  font-weight: 800;
  line-height: 0.8;
  margin-top: 16px;
  display: inline-block;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(-0.67%, #7A6331), color-stop(25.03%, #A38C45), color-stop(49.71%, #C6AE56), color-stop(63.07%, #D4BC5D), color-stop(95.97%, #816B38), color-stop(102.14%, #705B31));
  background: linear-gradient(0deg, #7A6331 -0.67%, #A38C45 25.03%, #C6AE56 49.71%, #D4BC5D 63.07%, #816B38 95.97%, #705B31 102.14%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support-actual-value-num {
    font-size: 8.203125vw;
    margin-top: 1.25vw;
  }
}
@media (max-width: 767px) {
  .support-actual-value-num {
    font-size: 11.2vw;
    font-weight: 700;
    margin-top: 2.1333333333vw;
  }
}

.support-actual-value-unit {
  font-family: "Yu Mincho StdN B", sans-serif;
  font-size: 45px;
  font-weight: 800;
  vertical-align: 5px;
  margin-left: 6px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support-actual-value-unit {
    font-size: 3.515625vw;
    vertical-align: 0.390625vw;
    margin-left: 0.46875vw;
  }
}
@media (max-width: 767px) {
  .support-actual-value-unit {
    font-size: 5.3333333333vw;
    vertical-align: 1px;
    margin-left: 1px;
  }
}

.support-actual-value-superscript {
  width: 19.8px;
  height: 15.8px;
  position: absolute;
  top: 0;
  right: 0;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support-actual-value-superscript {
    width: 1.546875vw;
    height: 1.234375vw;
  }
}
@media (max-width: 767px) {
  .support-actual-value-superscript {
    width: 2.6133333333vw;
    height: 2.08vw;
  }
}

.support-actual-value-notice {
  font-family: "Yu Gothic Pr6N M", sans-serif;
  color: #000;
  text-align: center;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.6;
  margin-top: 16px;
  padding: 0 20px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support-actual-value-notice {
    font-size: 0.78125vw;
    margin-top: 1.25vw;
    padding: 0 1.5625vw;
  }
}
@media (max-width: 767px) {
  .support-actual-value-notice {
    font-size: 2.6666666667vw;
    margin-top: 2.1333333333vw;
    padding: 0 5.3333333333vw;
    text-align: left;
  }
}

.support-heading2 {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 24px 0;
  border-top: 1px solid #D2C271;
  border-right: 1px solid #D2C271;
  border-left: 1px solid #D2C271;
  background: #FFF;
  margin-top: 96px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support-heading2 {
    max-width: 84.375vw;
  }
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support-heading2 {
    padding: 1.875vw 0;
    margin-top: 7.5vw;
  }
}
@media (max-width: 767px) {
  .support-heading2 {
    padding: 4.2666666667vw 0;
    margin-top: 10.6666666667vw;
    line-height: 0.5;
    border-right: none;
    border-left: none;
  }
}

.support-heading2__text {
  font-family: "Yu Gothic Pr6N B", sans-serif;
  display: inline-block;
  width: 100%;
  color: #000;
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 1.4px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support-heading2__text {
    font-size: 2.1875vw;
  }
}
@media (max-width: 767px) {
  .support-heading2__text {
    font-size: 4.8vw;
    letter-spacing: 0.9px;
  }
}

.support-logos-box {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  border: 1px solid #D2C271;
  background: #FFF;
  padding: 32px 100px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support-logos-box {
    max-width: 84.375vw;
  }
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support-logos-box {
    padding: 2.5vw 7.8125vw;
  }
}
@media (max-width: 767px) {
  .support-logos-box {
    padding: 4.2666666667vw 4vw;
    border-right: none;
    border-left: none;
  }
}

.support-logos-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
}

.support-logos-img-col {
  width: 25%;
  height: 88px;
  text-align: center;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support-logos-img-col {
    height: 6.875vw;
  }
}
@media (max-width: 767px) {
  .support-logos-img-col {
    width: 33.3333%;
    height: 12vw;
  }
}

.support-logos-img {
  width: auto;
  height: 100%;
}

.support-logos-notice {
  font-family: "Yu Gothic Pr6N M", sans-serif;
  color: #000;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  margin-top: 24px;
}
@media (max-width: 767px) {
  .support-logos-notice {
    width: calc(100% - 8vw);
    margin: 0 4vw;
  }
}
@media (min-width: 767px) and (max-width: 1280px) {
  .support-logos-notice {
    font-size: 1.09375vw;
    margin-top: 1.875vw;
  }
}
@media (max-width: 767px) {
  .support-logos-notice {
    font-size: 2.6666666667vw;
    margin-top: 2.1333333333vw;
    text-align: left;
  }
}

.comparison-heading1 {
  font-family: "Yu Mincho StdN B", sans-serif;
  color: #000;
  font-size: 40px;
  font-style: normal;
  font-weight: 800;
  line-height: 100%;
  letter-spacing: 2px;
  background-image: url("/content_assets/55tw/img/comparison-heading1-bg.webp");
  background-repeat: no-repeat;
  background-size: cover;
  clip-path: polygon(0 0, 100% 0, 100% 90%, 50% 100%, 0 90%);
}
@media (min-width: 767px) and (max-width: 1280px) {
  .comparison-heading1 {
    font-size: 3.125vw;
  }
}
@media (max-width: 767px) {
  .comparison-heading1 {
    font-size: 6.9333333333vw;
    line-height: 1.4;
    letter-spacing: 1.3px;
  }
}

.comparison-heading1 b {
  font-size: 50px;
  letter-spacing: 2.5px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .comparison-heading1 b {
    font-size: 3.90625vw;
  }
}
@media (max-width: 767px) {
  .comparison-heading1 b {
    font-size: 6.9333333333vw;
  }
}

.comparison-heading1__inner {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 360px;
  position: relative;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .comparison-heading1__inner {
    max-width: 84.375vw;
  }
}
@media (min-width: 767px) and (max-width: 1280px) {
  .comparison-heading1__inner {
    height: 28.125vw;
  }
}
@media (max-width: 767px) {
  .comparison-heading1__inner {
    height: 40.2666666667vw;
  }
}

.comparison-heading1__inner::before {
  content: "";
  display: inline-block;
  width: 717px;
  height: 351px;
  background-image: url("/content_assets/55tw/img/comparison-heading1-tamaki-img-pc.webp");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  left: -158px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .comparison-heading1__inner::before {
    width: 56.015625vw;
    height: 27.421875vw;
    left: -12.34375vw;
  }
}
@media (max-width: 767px) {
  .comparison-heading1__inner::before {
    background-image: url("/content_assets/55tw/img/comparison-heading1-tamaki-img-sp.webp");
    width: 62.1333333333vw;
    height: 80.5333333333vw;
    left: 0;
    top: 4.2666666667vw;
    -webkit-transform: rotate(2.964deg);
            transform: rotate(2.964deg);
  }
}

.comparison-heading1__text {
  -webkit-transform: translateX(8px);
          transform: translateX(8px);
}
@media (min-width: 767px) and (max-width: 1280px) {
  .comparison-heading1__text {
    -webkit-transform: translateX(0.625vw);
            transform: translateX(0.625vw);
  }
}
@media (max-width: 767px) {
  .comparison-heading1__text {
    -webkit-transform: translateX(15.6vw);
            transform: translateX(15.6vw);
  }
}

.comparison-heading1__text-border {
  background-image: url("/content_assets/55tw/img/support-heading-border.webp");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom;
  padding: 0 5px 5px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .comparison-heading1__text-border {
    padding: 0 0.390625vw 0.390625vw;
  }
}
@media (max-width: 767px) {
  .comparison-heading1__text-border {
    background-position: bottom -5.8666666667vw left 0px;
    background-size: auto;
    padding: 0 1.3333333333vw;
  }
}

.comparison-heading2 {
  margin-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
}
@media (max-width: 767px) {
  .comparison-heading2 {
    width: calc(100% - 8vw);
    margin: 0 4vw;
  }
}
@media (min-width: 767px) and (max-width: 1280px) {
  .comparison-heading2 {
    margin-top: 4.6875vw;
    gap: 1.25vw;
  }
}
@media (max-width: 767px) {
  .comparison-heading2 {
    margin-top: 8.5333333333vw;
    gap: 4.2666666667vw;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.comparison-heading2::before {
  content: "";
  display: inline-block;
  width: 140px;
  height: 140px;
  background-image: url("/content_assets/55tw/img/comparison-heading2-icon1.webp");
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 16px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .comparison-heading2::before {
    width: 10.9375vw;
    height: 10.9375vw;
    margin-right: 1.25vw;
  }
}
@media (max-width: 767px) {
  .comparison-heading2::before {
    width: 18.6666666667vw;
    height: 18.6666666667vw;
    margin-right: 0;
  }
}

.comparison-heading2.comparison-heading2--point2::before {
  background-image: url("/content_assets/55tw/img/comparison-heading2-icon2.webp");
}

.comparison-heading2__text {
  font-family: "Yu Gothic StdN E", sans-serif;
  color: #000;
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .comparison-heading2__text {
    font-size: 2.5vw;
  }
}
@media (max-width: 767px) {
  .comparison-heading2__text {
    font-size: 6.4vw;
    line-height: 1.4;
  }
}

.comparison-heading2__text-strong {
  font-size: 40px;
  background: var(--goldtext, linear-gradient(90deg, #CAAA1C 0%, #C5A62C 50%, #95804C 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .comparison-heading2__text-strong {
    font-size: 3.125vw;
  }
}
@media (max-width: 767px) {
  .comparison-heading2__text-strong {
    font-size: 6.4vw;
  }
}

.comparison-note {
  font-family: "Yu Gothic Pr6N B", sans-serif;
  color: #000;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.8;
}
@media (max-width: 767px) {
  .comparison-note {
    width: calc(100% - 8vw);
    margin: 0 4vw;
  }
}
@media (min-width: 767px) and (max-width: 1280px) {
  .comparison-note {
    font-size: 1.40625vw;
  }
}
@media (max-width: 767px) {
  .comparison-note {
    font-size: 3.7333333333vw;
    text-align: left;
    margin-top: 4.2666666667vw;
  }
}

.comparison-note__border {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(70%, #D2C271), to(#D2C271));
  background: linear-gradient(transparent 70%, #D2C271 70%, #D2C271 100%);
}

.comparison-slider {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  margin-top: 48px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .comparison-slider {
    max-width: 84.375vw;
  }
}
@media (min-width: 767px) and (max-width: 1280px) {
  .comparison-slider {
    margin-top: 3.75vw;
  }
}
@media (max-width: 767px) {
  .comparison-slider {
    margin-top: 6.4vw;
  }
}

.comparison-slider .slick-list::before,
.comparison-slider .slick-list::after {
  content: "";
  display: inline-block;
  width: 58px;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 2;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .comparison-slider .slick-list::before,
  .comparison-slider .slick-list::after {
    width: 4.53125vw;
  }
}
@media (max-width: 767px) {
  .comparison-slider .slick-list::before,
  .comparison-slider .slick-list::after {
    display: none;
  }
}

.comparison-slider .slick-list::before {
  left: 0;
  -webkit-transform: translateX(-2px);
          transform: translateX(-2px);
  background: -webkit-gradient(linear, left top, right top, from(#F5F5F5), to(rgba(245, 245, 245, 0.2)));
  background: linear-gradient(90deg, #F5F5F5 0%, rgba(245, 245, 245, 0.2) 100%);
}

.comparison-slider .slick-list::after {
  right: 0;
  -webkit-transform: translateX(3px);
          transform: translateX(3px);
  background: -webkit-gradient(linear, right top, left top, from(#F5F5F5), to(rgba(245, 245, 245, 0.2)));
  background: linear-gradient(270deg, #F5F5F5 0%, rgba(245, 245, 245, 0.2) 100%);
}

.comparison-slider .slick-arrow,
.comparison-slider-custom-dots-container .slick-arrow {
  content: "";
  display: inline-block;
  width: 60px;
  height: 60px;
  background-image: url("/content_assets/55tw/img/comparison-slider-arrow-btn.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  z-index: 3;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .comparison-slider .slick-arrow,
  .comparison-slider-custom-dots-container .slick-arrow {
    width: 4.6875vw;
    height: 4.6875vw;
  }
}
@media (max-width: 767px) {
  .comparison-slider .slick-arrow,
  .comparison-slider-custom-dots-container .slick-arrow {
    width: 12vw;
    height: 12vw;
    position: static;
  }
}

.comparison-slider .slick-arrow:hover {
  opacity: 0.7;
}

.comparison-slider .slick-prev,
.comparison-slider-custom-dots-container .slick-prev {
  top: 200px;
  left: -40px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .comparison-slider .slick-prev,
  .comparison-slider-custom-dots-container .slick-prev {
    top: 15.625vw;
    left: -3.125vw;
  }
}
@media (max-width: 767px) {
  .comparison-slider .slick-prev,
  .comparison-slider-custom-dots-container .slick-prev {
    top: unset;
    left: unset;
    -webkit-transform: unset;
            transform: unset;
    margin-right: 4.2666666667vw;
  }
}

.comparison-slider .slick-next,
.comparison-slider-custom-dots-container .slick-next {
  top: 200px;
  right: -40px;
  -webkit-transform: translate(0, -50%) scale(-1, 1);
          transform: translate(0, -50%) scale(-1, 1);
}
@media (min-width: 767px) and (max-width: 1280px) {
  .comparison-slider .slick-next,
  .comparison-slider-custom-dots-container .slick-next {
    top: 15.625vw;
    right: -3.125vw;
  }
}
@media (max-width: 767px) {
  .comparison-slider .slick-next,
  .comparison-slider-custom-dots-container .slick-next {
    top: unset;
    left: unset;
    -webkit-transform: scale(-1, 1);
            transform: scale(-1, 1);
    margin-left: 4.2666666667vw;
  }
}

.comparison-slider .slick-prev:before,
.comparison-slider .slick-next:before,
.comparison-slider-custom-dots-container .slick-prev:before,
.comparison-slider-custom-dots-container .slick-next:before {
  content: "";
}

.comparison-slider.slick-dotted.slick-slider {
  padding-bottom: 32px;
  margin-bottom: 0;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .comparison-slider.slick-dotted.slick-slider {
    padding-bottom: 2.5vw;
  }
}

.comparison-slider .slick-dots,
.comparison-slider-custom-dots-container .slick-dots {
  bottom: 0;
}
@media (max-width: 767px) {
  .comparison-slider .slick-dots,
  .comparison-slider-custom-dots-container .slick-dots {
    position: static;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    -webkit-transform: translateY(-1.6vw);
            transform: translateY(-1.6vw);
  }
}

.comparison-slider .slick-dots li,
.comparison-slider-custom-dots-container .slick-dots li {
  width: 12px;
  height: 12px;
  margin: 0 12px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .comparison-slider .slick-dots li,
  .comparison-slider-custom-dots-container .slick-dots li {
    width: 0.9375vw;
    height: 0.9375vw;
    margin: 0 0.9375vw;
  }
}
@media (max-width: 767px) {
  .comparison-slider .slick-dots li,
  .comparison-slider-custom-dots-container .slick-dots li {
    width: 2.6666666667vw;
    height: 2.6666666667vw;
    margin: 0 2.1333333333vw;
  }
}

.comparison-slider .slick-dots li button,
.comparison-slider-custom-dots-container .slick-dots li button {
  width: 12px;
  height: 12px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .comparison-slider .slick-dots li button,
  .comparison-slider-custom-dots-container .slick-dots li button {
    width: 0.9375vw;
    height: 0.9375vw;
  }
}
@media (max-width: 767px) {
  .comparison-slider .slick-dots li button,
  .comparison-slider-custom-dots-container .slick-dots li button {
    width: 2.6666666667vw;
    height: 2.6666666667vw;
  }
}

.comparison-slider .slick-dots li button:before,
.comparison-slider-custom-dots-container .slick-dots li button:before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  opacity: 1;
  background-color: #B3B3B3;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .comparison-slider .slick-dots li button:before,
  .comparison-slider-custom-dots-container .slick-dots li button:before {
    width: 0.9375vw;
    height: 0.9375vw;
  }
}
@media (max-width: 767px) {
  .comparison-slider .slick-dots li button:before,
  .comparison-slider-custom-dots-container .slick-dots li button:before {
    width: 2.6666666667vw;
    height: 2.6666666667vw;
  }
}

.comparison-slider .slick-dots li button:hover::before,
.comparison-slider-custom-dots-container .slick-dots li button:hover::before {
  opacity: 0.7;
}

.comparison-slider .slick-dots li.slick-active button:before,
.comparison-slider-custom-dots-container .slick-dots li.slick-active button:before {
  opacity: 1;
  background-color: #000;
}

.comparison-slider-col {
  width: 300px;
  margin: 0 8px;
  margin-bottom: 10px;
  -webkit-box-shadow: 5px 5px 5px 0px rgba(0, 0, 0, 0.15);
          box-shadow: 5px 5px 5px 0px rgba(0, 0, 0, 0.15);
}
@media (min-width: 767px) and (max-width: 1280px) {
  .comparison-slider-col {
    width: 23.4375vw;
    margin: 0 0.625vw;
    margin-bottom: 0.78125vw;
  }
}
@media (max-width: 767px) {
  .comparison-slider-col {
    width: 80vw;
    margin: 0 2.1333333333vw;
    margin-bottom: 2.6666666667vw;
  }
}

.comparison-slider-col__upper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.comparison-slider-col__imgbox {
  width: 130px;
  height: 200px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .comparison-slider-col__imgbox {
    width: 10.15625vw;
    height: 15.625vw;
  }
}
@media (max-width: 767px) {
  .comparison-slider-col__imgbox {
    width: 34.6666666667vw;
    height: 53.3333333333vw;
  }
}

.comparison-slider-col__txtbox {
  width: calc(100% - 130px);
  background: #333;
  padding: 16px 16px 0;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .comparison-slider-col__txtbox {
    width: calc(100% - 10.15625vw);
    padding: 1.25vw 1.25vw 0;
  }
}
@media (max-width: 767px) {
  .comparison-slider-col__txtbox {
    width: calc(100% - 34.6666666667vw);
    padding: 4.2666666667vw 4.2666666667vw 0;
  }
}

.comparison-slider-col__bubble {
  font-family: "Yu Gothic Pr6N B", sans-serif;
  position: relative;
  border-radius: 2px;
  background: #FFF;
  color: #000;
  font-size: 11px;
  font-weight: 800;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 134px;
  height: 24px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .comparison-slider-col__bubble {
    font-size: 0.859375vw;
    width: 10.46875vw;
    height: 1.875vw;
  }
}
@media (max-width: 767px) {
  .comparison-slider-col__bubble {
    font-size: 2.9333333333vw;
    width: 35.7333333333vw;
    height: 6.4vw;
  }
}

.comparison-slider-col__bubble::after {
  content: "";
  display: inline-block;
  width: 13px;
  height: 5px;
  background-image: url("/content_assets/55tw/img/comparison-slider-col__bubble-after.svg");
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  z-index: 3;
  bottom: -4px;
  left: calc(50% - 6.5px);
}
@media (min-width: 767px) and (max-width: 1280px) {
  .comparison-slider-col__bubble::after {
    width: 1.015625vw;
    height: 0.390625vw;
    bottom: -0.3125vw;
    left: calc(50% - 0.5078125vw);
  }
}
@media (max-width: 767px) {
  .comparison-slider-col__bubble::after {
    width: 3.4666666667vw;
    height: 1.3333333333vw;
    bottom: -1.0666666667vw;
    left: calc(50% - 1.7333333333vw);
  }
}

.comparison-slider-col__bubble b {
  font-size: 14px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .comparison-slider-col__bubble b {
    font-size: 1.09375vw;
  }
}
@media (max-width: 767px) {
  .comparison-slider-col__bubble b {
    font-size: 3.7333333333vw;
  }
}

.comparison-slider-col__name {
  font-family: "Yu Gothic Pr6N B", sans-serif;
  color: #FFF;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  margin-top: 13px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .comparison-slider-col__name {
    font-size: 1.40625vw;
    margin-top: 1.015625vw;
  }
}
@media (max-width: 767px) {
  .comparison-slider-col__name {
    font-size: 4.8vw;
    margin-top: 3.4666666667vw;
  }
}

.comparison-slider-col__introduction {
  font-family: "Yu Gothic Pr6N R", sans-serif;
  color: #FFF;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
  margin-top: 16px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .comparison-slider-col__introduction {
    font-size: 0.9375vw;
    margin-top: 1.25vw;
  }
}
@media (max-width: 767px) {
  .comparison-slider-col__introduction {
    font-size: 3.2vw;
    margin-top: 4.2666666667vw;
  }
}

.comparison-slider-col__lower {
  padding: 24px 16px;
  background: #FFF;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .comparison-slider-col__lower {
    padding: 1.875vw 1.25vw;
  }
}
@media (max-width: 767px) {
  .comparison-slider-col__lower {
    padding: 6.4vw 4.2666666667vw;
  }
}

.comparison-slider-col__achievements {
  border-radius: 6px;
  border: 1px solid #E6E6E6;
  background: #FFF;
  padding: 12px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .comparison-slider-col__achievements {
    padding: 0.9375vw 0;
    gap: 0.625vw;
  }
}
@media (max-width: 767px) {
  .comparison-slider-col__achievements {
    padding: 3.2vw 0;
    gap: 2.1333333333vw;
  }
}

.comparison-slider-col__achievements--reverse .comparison-slider-col__achievements-badge {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

.comparison-slider-col__achievements--reverse .comparison-slider-col__achievements-txtarea {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.comparison-slider-col__achievements-badge {
  width: 58px;
  height: 58px;
  background-image: url("/content_assets/55tw/img/comparison-slider-col__achievements-badge-bg.webp");
  background-repeat: no-repeat;
  background-size: contain;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .comparison-slider-col__achievements-badge {
    width: 4.53125vw;
    height: 4.53125vw;
  }
}
@media (max-width: 767px) {
  .comparison-slider-col__achievements-badge {
    width: 15.4666666667vw;
    height: 15.4666666667vw;
  }
}

.comparison-slider-col__achievements-badge-text {
  font-family: "Yu Gothic Pr6N B", sans-serif;
  color: #FFF;
  font-size: 13px;
  font-weight: 800;
  line-height: 15px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .comparison-slider-col__achievements-badge-text {
    font-size: 1.015625vw;
    line-height: 1.171875vw;
  }
}
@media (max-width: 767px) {
  .comparison-slider-col__achievements-badge-text {
    font-size: 3.4666666667vw;
    line-height: 4vw;
  }
}

.comparison-slider-col__achievements-txtarea {
  text-align: center;
}

.comparison-slider-col__achievements-before {
  font-family: "Yu Gothic Pr6N B", sans-serif;
  color: #000;
  font-size: 13px;
  font-weight: 800;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .comparison-slider-col__achievements-before {
    font-size: 1.015625vw;
  }
}
@media (max-width: 767px) {
  .comparison-slider-col__achievements-before {
    font-size: 3.4666666667vw;
  }
}

.comparison-slider-col__achievements-before::after {
  content: "";
  display: block;
  width: 14px;
  height: 7px;
  background-image: url("/content_assets/55tw/img/comparison-slider-col__achievements-arrow.webp");
  background-repeat: no-repeat;
  background-size: contain;
  margin: 3px auto -3px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .comparison-slider-col__achievements-before::after {
    width: 1.09375vw;
    height: 0.546875vw;
    margin: 0.234375vw auto -0.234375vw;
  }
}
@media (max-width: 767px) {
  .comparison-slider-col__achievements-before::after {
    width: 3.7333333333vw;
    height: 1.8666666667vw;
    margin: 0.8vw auto -0.8vw;
  }
}

.comparison-slider-col__achievements-after {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 3px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .comparison-slider-col__achievements-after {
    gap: 0.234375vw;
  }
}
@media (max-width: 767px) {
  .comparison-slider-col__achievements-after {
    gap: 0.8vw;
  }
}

.comparison-slider-col__achievements-after-bubble {
  font-family: "Yu Gothic Pr6N B", sans-serif;
  border-radius: 2px;
  background: #C30000;
  padding: 5px;
  color: #FFF;
  font-size: 12px;
  font-weight: 800;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .comparison-slider-col__achievements-after-bubble {
    padding: 0.390625vw;
    font-size: 0.9375vw;
  }
}
@media (max-width: 767px) {
  .comparison-slider-col__achievements-after-bubble {
    padding: 1.3333333333vw;
    font-size: 3.2vw;
  }
}

.comparison-slider-col__achievements-after-salary {
  font-family: "Yu Gothic Pr6N B", sans-serif;
  color: #000;
  font-weight: 800;
}

.comparison-slider-col__achievements-after-salary-num {
  font-size: 33px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .comparison-slider-col__achievements-after-salary-num {
    font-size: 2.578125vw;
  }
}
@media (max-width: 767px) {
  .comparison-slider-col__achievements-after-salary-num {
    font-size: 8.8vw;
  }
}

.comparison-slider-col__achievements-after-salary-unit {
  font-size: 14px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .comparison-slider-col__achievements-after-salary-unit {
    font-size: 1.09375vw;
  }
}
@media (max-width: 767px) {
  .comparison-slider-col__achievements-after-salary-unit {
    font-size: 3.7333333333vw;
  }
}

.comparison-slider-col__detail {
  font-family: "Yu Gothic Pr6N B", sans-serif;
  margin-top: 16px;
  color: #000;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .comparison-slider-col__detail {
    margin-top: 1.25vw;
    font-size: 1.09375vw;
  }
}
@media (max-width: 767px) {
  .comparison-slider-col__detail {
    margin-top: 4.2666666667vw;
    font-size: 3.7333333333vw;
  }
}

.comparison-slider-col__profile {
  font-family: "Yu Gothic Pr6N B", sans-serif;
  margin-top: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #000;
  font-size: 11px;
  font-weight: 700;
  line-height: 20px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .comparison-slider-col__profile {
    margin-top: 0.625vw;
    font-size: 0.859375vw;
    line-height: 1.5625vw;
  }
}
@media (max-width: 767px) {
  .comparison-slider-col__profile {
    margin-top: 2.1333333333vw;
    font-size: 2.9333333333vw;
    line-height: 5.3333333333vw;
  }
}

.comparison-slider-col__profile::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url("/content_assets/55tw/img/comparison-slider-col__profile-icon.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .comparison-slider-col__profile::before {
    width: 1.5625vw;
    height: 1.5625vw;
  }
}
@media (max-width: 767px) {
  .comparison-slider-col__profile::before {
    width: 5.3333333333vw;
    height: 5.3333333333vw;
    -webkit-transform: translateY(-1px);
            transform: translateY(-1px);
  }
}

.comparison-slider-custom-dots-container {
  display: none;
}
@media (max-width: 767px) {
  .comparison-slider-custom-dots-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: relative;
    margin-bottom: 10.6666666667vw;
  }
}

.comparison-point-box {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  margin-top: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .comparison-point-box {
    max-width: 84.375vw;
  }
}
@media (max-width: 767px) {
  .comparison-point-box {
    width: calc(100% - 8vw);
    margin: 0 4vw;
  }
}
@media (min-width: 767px) and (max-width: 1280px) {
  .comparison-point-box {
    margin-top: 3.75vw;
    gap: 1.875vw;
  }
}
@media (max-width: 767px) {
  .comparison-point-box {
    margin-top: 6.4vw;
    display: block;
  }
}

.comparison-point-col {
  width: calc((100% - 48px) / 3);
}
@media (min-width: 767px) and (max-width: 1280px) {
  .comparison-point-col {
    width: calc((100% - 3.75vw) / 3);
  }
}
@media (max-width: 767px) {
  .comparison-point-col {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media (max-width: 767px) {
  .comparison-point-col + .comparison-point-col {
    margin-top: 2.1333333333vw;
  }
}

.comparison-point-title {
  background: #3A3935;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 15px 0;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .comparison-point-title {
    padding: 1.171875vw 0;
  }
}
@media (max-width: 767px) {
  .comparison-point-title {
    padding: 3.2vw 6.4vw;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: calc(100% - 34.6666666667vw);
    gap: 2.1333333333vw;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.comparison-point-title::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 24px;
  background-image: url("/content_assets/55tw/img/comparison-point-title-check-icon.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .comparison-point-title::before {
    width: 2.1875vw;
    height: 1.875vw;
  }
}
@media (max-width: 767px) {
  .comparison-point-title::before {
    width: 6.4vw;
    height: 5.3333333333vw;
  }
}

.comparison-point-title__text {
  font-family: "Yu Gothic Pr6N B", sans-serif;
  color: #FFF;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .comparison-point-title__text {
    font-size: 1.5625vw;
  }
}
@media (max-width: 767px) {
  .comparison-point-title__text {
    font-size: 4.2666666667vw;
  }
}

@media (max-width: 767px) {
  .comparison-point-img {
    width: 34.6666666667vw;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

.appeal-bnr {
  margin-top: 160px;
  height: 300px;
  background: -webkit-gradient(linear, left top, right top, from(#837745), color-stop(40%, #DFD180), color-stop(70%, #F7ECAF), to(#776735));
  background: linear-gradient(90deg, #837745 0%, #DFD180 40%, #F7ECAF 70%, #776735 100%);
}
@media (min-width: 767px) and (max-width: 1280px) {
  .appeal-bnr {
    margin-top: 12.5vw;
    height: 23.4375vw;
  }
}
@media (max-width: 767px) {
  .appeal-bnr {
    margin-top: 19.2vw;
    height: 43.2vw;
  }
}

.appeal-bnr__inner {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  max-width: 1220px;
  position: relative;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .appeal-bnr__inner {
    max-width: 84.375vw;
  }
}
@media (min-width: 767px) and (max-width: 1280px) {
  .appeal-bnr__inner {
    max-width: unset;
  }
}

.appeal-bnr-img {
  position: absolute;
  width: 1220px;
  height: 400px;
  top: -100px;
  left: 0;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .appeal-bnr-img {
    width: 95.3125vw;
    height: 31.25vw;
    top: -7.8125vw;
    left: 1.328125vw;
  }
}
@media (max-width: 767px) {
  .appeal-bnr-img {
    top: -13.3333333333vw;
    width: 96.2666666667vw;
    height: 56.5333333333vw;
    left: 1.8666666667vw;
  }
}

@media (max-width: 767px) {
  #anc_contact {
    scroll-margin-top: 10.6666666667vw;
  }
}

.contact {
  padding: 96px 0;
  background-color: #ebe9e4;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .contact {
    padding: 7.5vw 0;
  }
}
@media (max-width: 767px) {
  .contact {
    padding: 10.6666666667vw 0;
  }
}

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

.contact-heading-inner {
  font-family: "Yu Mincho Pr6N D", sans-serif;
  color: #000;
  font-size: 40px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 2px;
  background-image: url("/content_assets/55tw/img/support-heading-border.webp");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom;
  padding: 0 5px 5px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .contact-heading-inner {
    padding: 0 0.390625vw 0.390625vw;
  }
}
@media (min-width: 767px) and (max-width: 1280px) {
  .contact-heading-inner {
    font-size: 3.125vw;
  }
}
@media (max-width: 767px) {
  .contact-heading-inner {
    font-size: 6.4vw;
    letter-spacing: 0.72px;
    line-height: 1.4;
  }
}

.contact-heading-inner strong {
  font-size: 65px;
  letter-spacing: 3.25px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .contact-heading-inner strong {
    font-size: 5.078125vw;
  }
}
@media (max-width: 767px) {
  .contact-heading-inner strong {
    font-size: 9.0666666667vw;
    letter-spacing: 1.02px;
  }
}

.contact-box {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  margin-top: 32px;
  border-radius: 16px;
  background: #FFF;
  -webkit-box-shadow: 8px 8px 8px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 8px 8px 8px 0px rgba(0, 0, 0, 0.1);
  padding: 72px 0;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .contact-box {
    max-width: 84.375vw;
  }
}
@media (max-width: 767px) {
  .contact-box {
    width: calc(100% - 8vw);
    margin: 0 4vw;
  }
}
@media (min-width: 767px) and (max-width: 1280px) {
  .contact-box {
    margin-top: 2.5vw;
    padding: 5.625vw 0;
  }
}
@media (max-width: 767px) {
  .contact-box {
    margin-top: 5.3333333333vw;
    padding: 6.4vw 0;
    border-radius: 8px;
    -webkit-box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.1);
            box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.1);
  }
}

.contact-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .contact-title {
    gap: 0.78125vw;
  }
}
@media (max-width: 767px) {
  .contact-title {
    display: block;
    text-align: center;
  }
}

.contact-title::before {
  content: "";
  display: inline-block;
  width: 38px;
  height: 38px;
  background-image: url("/content_assets/55tw/img/contact-title-before-icon.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .contact-title::before {
    width: 2.96875vw;
    height: 2.96875vw;
  }
}
@media (max-width: 767px) {
  .contact-title::before {
    width: 8.5333333333vw;
    height: 7.4666666667vw;
    display: block;
    margin: 0 auto;
  }
}

.contact-title-inner {
  color: #000;
  font-family: "Yu Gothic Pr6N B", sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 1.3px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .contact-title-inner {
    font-size: 2.03125vw;
  }
}
@media (max-width: 767px) {
  .contact-title-inner {
    font-size: 4.8vw;
    line-height: 1.5;
    letter-spacing: 0.9px;
    margin-top: 4.2666666667vw;
    display: inline-block;
  }
}

.contact-title-inner b {
  font-family: "Yu Gothic StdN E", sans-serif;
}
@media (max-width: 767px) {
  .contact-title-inner b {
    font-family: "Yu Gothic Pr6N B", sans-serif;
  }
}

.contact-btn-box {
  margin: 32px auto 0;
  width: 816px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .contact-btn-box {
    margin: 2.5vw auto 0;
    width: 63.75vw;
    gap: 1.25vw;
  }
}
@media (max-width: 767px) {
  .contact-btn-box {
    margin: 4.2666666667vw 4.2666666667vw 0;
    width: calc(100% - 8.5333333333vw);
    gap: 1.8666666667vw;
  }
}

.contact-btn {
  width: calc(50% - 8px);
  height: 72px;
  position: relative;
  border-radius: 8px;
  background: -webkit-gradient(linear, left top, right top, from(#131313), color-stop(50%, #534B4A), to(#101010));
  background: linear-gradient(90deg, #131313 0%, #534B4A 50%, #101010 100%);
}
@media (min-width: 767px) and (max-width: 1280px) {
  .contact-btn {
    width: calc(50% - 0.625vw);
    height: 5.625vw;
  }
}
@media (max-width: 767px) {
  .contact-btn {
    width: calc(50% - 0.9333333333vw);
    height: 12.8vw;
    border-radius: 4px;
  }
}

.contact-btn::before {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  opacity: 0;
  border-radius: 8px;
  background: -webkit-gradient(linear, left top, right top, from(#91782B), color-stop(50%, #C7B660), to(#91782B));
  background: linear-gradient(90deg, #91782B 0%, #C7B660 50%, #91782B 100%);
}

.contact-btn.contact-btn-wide::before {
  background: #F8F5E4;
}

.contact-btn:hover {
  opacity: 1;
}

.contact-btn:hover::before {
  opacity: 1;
}

.contact-btn::after {
  content: "";
  display: inline-block;
  width: 25px;
  height: 33px;
  background-image: url("/content_assets/55tw/img/contact-btn-icon3.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: calc(50% - 17px);
  right: 19px;
  z-index: 3;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .contact-btn::after {
    width: 1.953125vw;
    height: 2.578125vw;
    top: calc(50% - 1.328125vw);
    right: 1.484375vw;
  }
}
@media (max-width: 767px) {
  .contact-btn::after {
    width: 2.6666666667vw;
    height: 4vw;
    top: calc(50% - 2vw);
    right: 2.1333333333vw;
  }
}

.contact-btn.contact-btn-wide {
  width: 100%;
  border-radius: 8px;
  border: 1px solid #C8C8C8;
  background: #F5F5F5;
}

.contact-btn.contact-btn-wide::after {
  width: 17px;
  height: 25px;
  top: calc(50% - 12.5px);
  right: 24px;
  background-image: url("/content_assets/55tw/img/contact-btn-icon2.svg");
}
@media (min-width: 767px) and (max-width: 1280px) {
  .contact-btn.contact-btn-wide::after {
    width: 1.328125vw;
    height: 1.953125vw;
    top: calc(50% - 0.9765625vw);
    right: 1.875vw;
  }
}
@media (max-width: 767px) {
  .contact-btn.contact-btn-wide::after {
    width: 2.6666666667vw;
    height: 4vw;
    top: calc(50% - 2vw);
    right: 2.1333333333vw;
  }
}

.contact-btn__inner {
  font-family: "Yu Gothic Pr6N B", sans-serif;
  color: #FFF;
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 1.1px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  z-index: 4;
  height: 100%;
  width: 100%;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .contact-btn__inner {
    font-size: 1.71875vw;
  }
}
@media (max-width: 767px) {
  .contact-btn__inner {
    font-size: 3.7333333333vw;
    letter-spacing: 0.7px;
  }
}

.contact-btn__inner::after {
  content: "";
  display: inline-block;
  width: 17px;
  height: 25px;
  background-image: url("/content_assets/55tw/img/contact-btn-icon1.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: calc(50% - 12.5px);
  right: 24px;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  opacity: 1;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .contact-btn__inner::after {
    width: 1.328125vw;
    height: 1.953125vw;
    top: calc(50% - 0.9765625vw);
    right: 1.875vw;
  }
}
@media (max-width: 767px) {
  .contact-btn__inner::after {
    width: 2.6666666667vw;
    height: 4vw;
    top: calc(50% - 2vw);
    right: 2.1333333333vw;
  }
}

.contact-btn:hover .contact-btn__inner::after {
  opacity: 0;
}

.contact-btn.contact-btn-wide .contact-btn__inner {
  font-family: "Yu Gothic Pr6N B", sans-serif;
  color: #000;
  font-size: 22px;
  font-weight: 700;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .contact-btn.contact-btn-wide .contact-btn__inner {
    font-size: 1.71875vw;
  }
}
@media (max-width: 767px) {
  .contact-btn.contact-btn-wide .contact-btn__inner {
    font-size: 3.7333333333vw;
  }
}

.contact-btn.contact-btn-wide .contact-btn__inner::after {
  display: none;
}

@media (max-width: 767px) {
  .btn_entry_bottom .cv-btn {
    width: 100%;
    margin: unset;
  }
}

@media (max-width: 767px) {
  .btn_entry_bottom {
    position: fixed;
    bottom: 0;
    right: 0;
    width: 100%;
    z-index: 10;
    background: rgba(0, 0, 0, 0.8);
    padding: 2.6666666667vw 4vw;
    display: none;
  }
}

.main-content {
  background: #fff;
}

.header-btn::after {
  -webkit-transform: rotate(270deg);
          transform: rotate(270deg);
}

.fv {
  overflow: hidden;
}

.fv-inner {
  width: 1080px;
  height: 610px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .fv-inner {
    width: 84.375vw;
  }
}
@media (max-width: 767px) {
  .fv-inner {
    height: 177.0666666667vw;
    width: 100%;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}
.fv-inner:after {
  z-index: 2;
  content: "";
  display: inline-block;
  width: 649px;
  height: 726px;
  background-image: url("/content_assets/53tq3/img/fv-tamaki-img-pc.png");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transform: translateX(-29px);
          transform: translateX(-29px);
}
@media (min-width: 767px) and (max-width: 1280px) {
  .fv-inner:after {
    width: 50.703125vw;
    height: 56.71875vw;
    -webkit-transform: translateX(-2.265625vw);
            transform: translateX(-2.265625vw);
  }
}
@media (max-width: 767px) {
  .fv-inner:after {
    display: none;
  }
}

.fv-content {
  width: auto;
  z-index: 3;
}

.fv-background {
  z-index: 1;
  width: 658px;
  -ms-flex-item-align: start;
      align-self: start;
  margin-top: 47px;
  -webkit-transform: translateX(-21px);
          transform: translateX(-21px);
}
@media (min-width: 767px) and (max-width: 1280px) {
  .fv-background {
    width: 51.40625vw;
    margin-top: 3.671875vw;
    -webkit-transform: translateX(-1.640625vw);
            transform: translateX(-1.640625vw);
  }
}
@media (max-width: 767px) {
  .fv-background {
    display: none;
  }
}

.fv-main-copy {
  width: 374px;
}
@media (max-width: 767px) {
  .fv-main-copy {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
  }
  .fv-main-copy picture {
    width: 100%;
  }
}

.fv-cv-box {
  width: 492px;
  border-radius: 6px;
  background-color: rgba(255, 255, 255, 0.88);
  padding: 40px;
  margin-top: 40px;
  -webkit-filter: drop-shadow(-2px 9px 22px rgba(53, 61, 59, 0.22));
          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: 3.125vw;
    padding: 3.125vw;
  }
}
@media (max-width: 767px) {
  .fv-cv-box {
    background-color: rgb(255, 255, 255);
    width: calc(100% - 8vw);
    height: 45.8666666667vw;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    bottom: 6.6666666667vw;
    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: -webkit-gradient(linear, left top, right top, from(#bea464), color-stop(50%, #daba3a), to(#bea464));
  background: linear-gradient(90deg, #bea464 0%, #daba3a 50%, #bea464 100%);
  color: #fff;
  margin-right: 6px;
  display: inline-block;
  -webkit-transform: translateY(-3px);
          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;
    -webkit-transform: translateY(-0.234375vw);
            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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          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: 16px;
  font-weight: 700;
  line-height: 1;
  width: 200px;
  height: 56px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 4px;
  background: -webkit-gradient(linear, left top, right top, from(#b70000), color-stop(56.32%, #e11b1b), color-stop(103.67%, #b70000));
  background: linear-gradient(90deg, #b70000 0%, #e11b1b 56.32%, #b70000 103.67%);
  position: relative;
  margin-top: 0;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .fv-cv-btn {
    font-size: 1.25vw;
    width: 15.625vw;
    height: 4.375vw;
  }
}
@media (max-width: 767px) {
  .fv-cv-btn {
    font-size: 4.2666666667vw;
    width: 40vw;
    height: 13.3333333333vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1.6vw;
  }
}
.fv-cv-btn::before {
  content: "";
  display: block;
  border-bottom: 2px solid #ffe47b;
  border-left: 2px solid #ffe47b;
  -webkit-transform: rotate(225deg);
          transform: rotate(225deg);
  width: 8px;
  height: 8px;
  position: absolute;
  right: 12px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .fv-cv-btn::before {
    width: 0.625vw;
    height: 0.625vw;
    right: 0.9375vw;
  }
}
@media (max-width: 767px) {
  .fv-cv-btn::before {
    width: 1.8666666667vw;
    height: 1.8666666667vw;
    position: unset;
  }
}
.fv-cv-btn:hover {
  opacity: 1;
  -webkit-filter: brightness(1.25);
          filter: brightness(1.25);
}
.fv-cv-btn span {
  font-size: 20px;
  background: -webkit-gradient(linear, left top, right top, color-stop(1.39%, #fff2b1), color-stop(101.39%, #e2d073));
  background: linear-gradient(90deg, #fff2b1 1.39%, #e2d073 101.39%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .fv-cv-btn span {
    font-size: 1.5625vw;
  }
}
@media (max-width: 767px) {
  .fv-cv-btn span {
    font-size: 4.2666666667vw;
    background: none;
    -webkit-text-fill-color: unset;
  }
}

.fv-bnr {
  width: 262px;
  position: absolute;
  z-index: 1;
  bottom: 30px;
  right: -49px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .fv-bnr {
    width: 20.46875vw;
    bottom: 2.34375vw;
    right: -3.828125vw;
  }
}
@media (max-width: 767px) {
  .fv-bnr {
    left: 4vw;
    bottom: 56vw;
    width: 90%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 4px;
  }
}

.fv-bnr-text {
  text-align: right;
  font-size: 12px;
  line-height: 1;
  margin-top: 4px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .fv-bnr-text {
    font-size: 0.9375vw;
    margin-top: 0.3125vw;
  }
}
@media (max-width: 767px) {
  .fv-bnr-text {
    margin-top: 0;
    margin-bottom: 1.3333333333vw;
    font-size: 2.6666666667vw;
    text-shadow: rgba(223, 223, 223, 0.3) 2px 0px 0px, rgba(223, 223, 223, 0.3) 1.75517px 0.958851px 0px, rgba(223, 223, 223, 0.3) 1.0806px 1.68294px 0px, rgba(223, 223, 223, 0.3) 0.141474px 1.99499px 0px, rgba(223, 223, 223, 0.3) -0.832294px 1.81859px 0px, rgba(223, 223, 223, 0.3) -1.60229px 1.19694px 0px, rgba(223, 223, 223, 0.3) -1.97998px 0.28224px 0px, rgba(223, 223, 223, 0.3) -1.87291px -0.701566px 0px, rgba(223, 223, 223, 0.3) -1.30729px -1.5136px 0px, rgba(223, 223, 223, 0.3) -0.421592px -1.95506px 0px, rgba(223, 223, 223, 0.3) 0.567324px -1.91785px 0px, rgba(223, 223, 223, 0.3) 1.41734px -1.41108px 0px, rgba(223, 223, 223, 0.3) 1.92034px -0.558831px 0px;
  }
}

@media (max-width: 767px) {
  .fv-bnr-img {
    width: 83.7333333333vw;
  }
}

.support-note {
  letter-spacing: 0.05em;
}

@media (max-width: 767px) {
  .comparison-heading1 {
    clip-path: unset;
    position: relative;
    z-index: 2;
  }
}

@media (max-width: 767px) {
  .comparison-heading1::after {
    content: "";
    display: block;
    background-color: #fff;
    position: absolute;
    bottom: -1px;
    left: 0;
    z-index: 3;
    width: 100%;
    height: 100%;
    clip-path: polygon(50% 100%, 100% 85%, 100% 100%, 0 100%, 0 85%);
  }
}

@media (max-width: 767px) {
  .comparison-heading1__inner {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.comparison-heading1__inner::before {
  content: "";
  display: inline-block;
  width: 362px;
  height: 360px;
  background-image: url("/content_assets/53tq3/img/comparison-heading1-tamaki-img-pc.webp");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -8px;
  right: -69px;
  left: unset;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .comparison-heading1__inner::before {
    width: 28.28125vw;
    height: 28.125vw;
    top: -0.625vw;
    right: -5.390625vw;
  }
}
@media (max-width: 767px) {
  .comparison-heading1__inner::before {
    background-image: url("/content_assets/53tq3/img/comparison-heading1-tamaki-img-sp.webp");
    width: 51.4666666667vw;
    height: 42.6666666667vw;
    right: 0vw;
    top: -2.6666666667vw;
    -webkit-transform: unset;
            transform: unset;
  }
}

@media (max-width: 767px) {
  .comparison-heading1__text {
    margin-left: 4.5333333333vw;
    -webkit-transform: unset;
            transform: unset;
  }
}

.comparison-point-title {
  gap: 9px;
}
@media (min-width: 767px) and (max-width: 1280px) {
  .comparison-point-title {
    gap: 0.703125vw;
  }
}
@media (max-width: 767px) {
  .comparison-point-title {
    gap: 2.1333333333vw;
  }
}

.comparison-point-title__text {
  -webkit-transform: translateY(1px);
          transform: translateY(1px);
}

.logos-slider {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 60px;
  overflow: hidden;
  border-bottom: 1px solid #ededed;
  margin-top: -1px;
}
@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: -webkit-fit-content;
  max-width: fit-content;
  height: 100%;
  will-change: transform;
}
.logos-slider img + img {
  -webkit-animation: loop-2 100s linear infinite;
          animation: loop-2 100s linear infinite;
}

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

@-webkit-keyframes loop-1 {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@keyframes loop-1 {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@-webkit-keyframes loop-2 {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
}
@keyframes loop-2 {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
}
.cv-btn__text::after {
  -webkit-transform: rotate(270deg);
          transform: rotate(270deg);
}/*# sourceMappingURL=index.css.map */