@charset "UTF-8";
@media screen and (min-width: 768px) {
  .sp {
    display: none;
  }
}

.tab {
  display: none;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .tab {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}

section.fv {
  position: relative;
  /* アニメーション対象の1文字ごとのスタイル */
  /* アニメーション発火時のスタイル */
}
section.fv div.texts {
  position: absolute;
  color: #fff;
}
@media screen and (min-width: 768px) {
  section.fv div.texts {
    text-align: right;
    bottom: 70px;
    right: 50px;
  }
}
@media screen and (max-width: 767px) {
  section.fv div.texts {
    bottom: 8vw;
    left: 4vw;
  }
}
section.fv div.texts h2 {
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  section.fv div.texts h2 {
    margin-right: -36px;
    line-height: 1.25;
    font-size: 58px;
  }
}
@media screen and (max-width: 767px) {
  section.fv div.texts h2 {
    line-height: 1.25;
    font-size: 10.6666666667vw;
  }
}
section.fv div.texts p {
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  section.fv div.texts p.txt1 {
    margin-top: 10px;
    font-size: 26px;
  }
}
@media screen and (max-width: 767px) {
  section.fv div.texts p.txt1 {
    margin-top: 3.3333333333vw;
    font-size: 4vw;
  }
}
@media screen and (min-width: 768px) {
  section.fv div.texts p.txt2 {
    margin-top: 3px;
    font-size: 15px;
  }
}
@media screen and (max-width: 767px) {
  section.fv div.texts p.txt2 {
    margin-top: 0.6666666667vw;
    font-size: 2.9333333333vw;
  }
}
section.fv .texts .char {
  display: inline-block; /* transformなどを使えるようにする */
  opacity: 0; /* 初期状態は非表示 */
  /* 少し下からふわっと出す演出（任意） */
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform; /* 描画最適化 */
}
@media screen and (min-width: 768px) {
  section.fv .texts .char {
    transform: translateX(-10px);
  }
}
@media screen and (max-width: 767px) {
  section.fv .texts .char {
    transform: translateX(-5px);
  }
}
section.fv .texts .char.is-active {
  opacity: 1;
  transform: translateX(0);
}
section.fv .sp {
  display: none; /* PCでは改行しない（要件に合わせて調整してください） */
}
@media screen and (max-width: 768px) {
  section.fv .sp {
    display: block; /* SPでは改行 */
  }
}

.t-mv__area {
  background: url(../img/top/bg-noise-20.png);
  background-color: #061C26;
  background-repeat: repeat;
  background-size: 200px 200px;
}
@media screen and (min-width: 768px) {
  .t-mv__area {
    height: calc(100dvh - 30px);
  }
}
@media screen and (max-width: 767px) {
  .t-mv__area {
    height: calc(100dvh - 9.3333333333vw);
  }
}

.t-mv__area {
  position: relative;
  z-index: 0;
}

.t-mv__area .t-mv-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 26.08%), linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.2) 100%), rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.t-mv__area .mv-slider__wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .t-mv__area .mv-slider__wrap {
    height: calc(100dvh - 30px);
  }
}
@media screen and (max-width: 767px) {
  .t-mv__area .mv-slider__wrap {
    height: calc(100dvh - 9.3333333333vw);
  }
}

@media screen and (max-width: 767px) {
  .t-mv__area .mv-slider__wrap {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(2, 1fr);
  }
}
.t-mv__area .mv-slider {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.t-mv__area .mv-slider .mv-slide {
  position: absolute;
  list-style: none;
  width: 120%;
  height: 100%;
}

@keyframes slideMask {
  0% {
    clip-path: polygon(0 100%, 100% 100%, 100% 0, 0 0);
  }
  34% {
    z-index: 7;
    clip-path: polygon(0 100%, 100% 100%, 100% 0, 0 0);
  }
  48% {
    z-index: 7;
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  }
  64% {
    z-index: 0;
  }
  100% {
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  }
}
@media screen and (max-width: 767px) {
  @keyframes slideMask {
    0% {
      clip-path: polygon(100% 0, 0 0, 0 100%, 100% 100%);
    }
    34% {
      z-index: 7;
      clip-path: polygon(100% 0, 0 0, 0 100%, 100% 100%);
    }
    48% {
      z-index: 7;
      clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
    }
    64% {
      z-index: 0;
    }
    100% {
      clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
    }
  }
}
@keyframes slideMove {
  0% {
    transform: translateX(0%);
  }
  48% {
    transform: translateX(-15%);
  }
  90% {
    transform: translateX(-15%);
  }
  95% {
    transform: translateX(-2%);
  }
  100% {
    transform: translateX(0%);
  }
}
@keyframes slideFade {
  0% {
    opacity: 1;
  }
  36% {
    opacity: 1;
  }
  48% {
    opacity: 0;
  }
  90% {
    opacity: 0;
  }
  95% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.t-mv__area .mv-slider .mv-slide .mv-slide__inner {
  position: relative;
  width: 100%;
  height: 100%;
}

/* 1枚目 */
.t-mv__area .mv-slider .mv-slide:nth-child(1) {
  animation: slideMask 15s ease infinite;
  z-index: 6;
}

.t-mv__area .mv-slider .mv-slide:nth-child(1) .mv-slide__inner {
  animation: slideMove 15s linear infinite;
}

.t-mv__area .mv-slider .mv-slide:nth-child(1) .mv-slide__inner img {
  animation: slideFade 15s ease infinite;
}

/* 2枚目（遅延 5秒） */
.t-mv__area .mv-slider .mv-slide:nth-child(2) {
  animation: slideMask 15s 5s ease infinite;
  z-index: 5;
}

.t-mv__area .mv-slider .mv-slide:nth-child(2) .mv-slide__inner {
  animation: slideMove 15s 5s linear infinite;
}

.t-mv__area .mv-slider .mv-slide:nth-child(2) .mv-slide__inner img {
  animation: slideFade 15s 5s ease infinite;
}

/* 3枚目（遅延 10秒） */
.t-mv__area .mv-slider .mv-slide:nth-child(3) {
  animation: slideMask 15s 10s ease infinite;
  z-index: 4;
}

.t-mv__area .mv-slider .mv-slide:nth-child(3) .mv-slide__inner {
  animation: slideMove 15s 10s linear infinite;
}

.t-mv__area .mv-slider .mv-slide:nth-child(3) .mv-slide__inner img {
  animation: slideFade 15s 10s ease infinite;
}

.t-mv__area .mv-slider .mv-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 0 0;
}

.t-mv__area .mv-slider:nth-child(2) .mv-slide:nth-child(1),
.t-mv__area .mv-slider:nth-child(2) .mv-slide:nth-child(1) img {
  animation-delay: 0.15s;
}

.t-mv__area .mv-slider:nth-child(2) .mv-slide:nth-child(2),
.t-mv__area .mv-slider:nth-child(2) .mv-slide:nth-child(2) img {
  animation-delay: 5.15s;
}

.t-mv__area .mv-slider:nth-child(2) .mv-slide:nth-child(3),
.t-mv__area .mv-slider:nth-child(2) .mv-slide:nth-child(3) img {
  animation-delay: 10.15s;
}

main div.search {
  background-color: #eef0f1;
}
@media screen and (min-width: 768px) {
  main div.search {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px 40px;
    padding: 40px 30px;
  }
}
@media screen and (max-width: 767px) {
  main div.search {
    padding: 5.3333333333vw 0 6.6666666667vw;
  }
}
main div.search h3 {
  display: flex;
  align-items: center;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  main div.search h3 {
    font-size: 24px;
  }
}
@media screen and (max-width: 767px) {
  main div.search h3 {
    justify-content: center;
    font-size: 4vw;
  }
}
main div.search div.btns {
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  main div.search div.btns {
    gap: 0 30px;
  }
}
@media screen and (max-width: 767px) {
  main div.search div.btns {
    gap: 0 2.6666666667vw;
  }
}
main div.search div.btns .c_btn1 {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background-color: #2c2d2e;
  transition: 0.4s;
  border-radius: 100px;
}
@media screen and (min-width: 768px) {
  main div.search div.btns .c_btn1 {
    font-weight: bold;
    width: 340px;
    height: 50px;
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  main div.search div.btns .c_btn1 {
    width: 43.3333333333vw;
    height: 10.6666666667vw;
    margin-top: 3.3333333333vw;
    font-size: 2.6666666667vw;
  }
}
@media screen and (max-width: 767px) {
  main div.search div.btns .c_btn1 span.st {
    font-weight: bold;
    font-size: 3.4666666667vw;
  }
}
@media screen and (max-width: 767px) {
  main div.search div.btns .c_btn1 span.c_arrow1 {
    width: 2vw;
    height: 1.8666666667vw;
    right: 3.3333333333vw;
  }
}
@media screen and (min-width: 768px) {
  main div.search div.btns .c_btn1:hover {
    background-color: rgba(44, 45, 46, 0.8);
  }
}
@media screen and (min-width: 768px) {
  main div.search div.btns .c_btn1:hover span.c_arrow1 {
    transform: translate(5px, -50%);
  }
}
main div.search div.btns div.area {
  position: relative;
}
main div.search div.btns div.area div.c_btn1 {
  position: relative;
}
@media screen and (min-width: 768px) {
  main div.search div.btns div.area div.c_btn1:hover {
    cursor: pointer;
  }
}
main div.search div.btns div.area div.c_btn1 span.icon {
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  main div.search div.btns div.area div.c_btn1 span.icon {
    width: 14px;
    height: 12px;
    right: 22px;
  }
}
@media screen and (max-width: 767px) {
  main div.search div.btns div.area div.c_btn1 span.icon {
    width: 1.8666666667vw;
    height: 1.6vw;
    right: 3.3333333333vw;
  }
}
main div.search div.btns div.area div.c_btn1 span.icon span {
  transition: 0.4s;
  position: absolute;
  right: 0;
  width: 100%;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  main div.search div.btns div.area div.c_btn1 span.icon span {
    height: 2px;
  }
}
@media screen and (max-width: 767px) {
  main div.search div.btns div.area div.c_btn1 span.icon span {
    height: 0.2666666667vw;
    border-radius: 0.2666666667vw;
  }
}
main div.search div.btns div.area div.c_btn1 span.icon span:nth-of-type(1) {
  top: 0;
}
main div.search div.btns div.area div.c_btn1 span.icon span:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
}
main div.search div.btns div.area div.c_btn1 span.icon span:nth-of-type(3) {
  bottom: 0;
}
main div.search div.btns div.area div.cont {
  display: none;
  position: absolute;
  z-index: 1;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  main div.search div.btns div.area div.cont {
    top: 60px;
    left: 0;
    width: 340px;
    height: 390px;
    padding: 30px 10px 0 30px;
    border: 1px solid #d4d5d6;
    border-radius: 10px;
  }
}
@media screen and (max-width: 767px) {
  main div.search div.btns div.area div.cont {
    top: 15.3333333333vw;
    left: 0;
    width: 43.3333333333vw;
    height: 78.6666666667vw;
    padding: 4vw 2.6666666667vw 0 5.3333333333vw;
    border: 1px solid #d4d5d6;
    border-radius: 2.6666666667vw;
  }
}
main div.search div.btns div.area div.cont div.inner {
  overflow: auto;
  height: 100%;
}
@media screen and (min-width: 768px) {
  main div.search div.btns div.area div.cont div.inner {
    padding-right: 20px;
    padding-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  main div.search div.btns div.area div.cont div.inner {
    padding: 0 4vw 5.3333333333vw 0;
  }
}
@media screen and (min-width: 768px) {
  main div.search div.btns div.area div.cont div.inner div.list + div.list {
    margin-top: 20px;
  }
}
@media screen and (max-width: 767px) {
  main div.search div.btns div.area div.cont div.inner div.list + div.list {
    margin-top: 4vw;
  }
}
main div.search div.btns div.area div.cont div.inner div.list > p {
  font-weight: 500;
  color: #a6a7a9;
}
@media screen and (min-width: 768px) {
  main div.search div.btns div.area div.cont div.inner div.list > p {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  main div.search div.btns div.area div.cont div.inner div.list > p {
    font-size: 2.9333333333vw;
  }
}
main div.search div.btns div.area div.cont div.inner div.list ul li {
  display: flex;
}
@media screen and (min-width: 768px) {
  main div.search div.btns div.area div.cont div.inner div.list ul li {
    margin-top: 10px;
  }
}
@media screen and (max-width: 767px) {
  main div.search div.btns div.area div.cont div.inner div.list ul li {
    margin-top: 2vw;
  }
}
main div.search div.btns div.area div.cont div.inner div.list ul li a {
  display: block;
  width: 100%;
}
@media screen and (min-width: 768px) {
  main div.search div.btns div.area div.cont div.inner div.list ul li a {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  main div.search div.btns div.area div.cont div.inner div.list ul li a {
    font-size: 3.4666666667vw;
  }
}
@media screen and (min-width: 768px) {
  main div.search div.btns div.area div.cont div.inner div.list ul li a:hover {
    color: #b7392c;
  }
}
main div.search div.btns div.area.is-active span.icon span:nth-of-type(1) {
  top: 50% !important;
  transform: translateY(-50%) rotate(45deg);
}
main div.search div.btns div.area.is-active span.icon span:nth-of-type(2) {
  display: none;
}
main div.search div.btns div.area.is-active span.icon span:nth-of-type(3) {
  bottom: 50% !important;
  transform: translateY(50%) rotate(-45deg);
}
@media screen and (min-width: 768px) {
  main section.needs {
    padding: 120px 0 0;
  }
}
@media screen and (max-width: 767px) {
  main section.needs {
    padding: 16vw 0 18.6666666667vw;
  }
}
main section.needs div.inner {
  /* --- メインのスクロールセクション --- */
  /* --- 左側のテキストカラム --- */
  /* 最初の画像だけ表示 */
}
@media screen and (min-width: 768px) {
  main section.needs div.inner div.c_slider-wrap {
    display: none;
    position: fixed;
    top: 50%;
    left: 0;
    z-index: -1;
    transform: translateY(-50%);
  }
}
@media screen and (max-width: 767px) {
  main section.needs div.inner div.c_slider-wrap {
    transform: translateY(-14vw);
  }
}
@media screen and (min-width: 768px) {
  main section.needs div.inner div.c_slider-wrap div.c_slider div.c_slider_container {
    gap: 0 50px;
  }
}
@media screen and (max-width: 767px) {
  main section.needs div.inner div.c_slider-wrap div.c_slider div.c_slider_container {
    gap: 0 4vw;
  }
}
@media screen and (min-width: 768px) {
  main section.needs div.inner div.c_slider-wrap div.c_slider div.c_slider_container div.c_slider_img-wrap img {
    width: 933px;
  }
}
@media screen and (max-width: 767px) {
  main section.needs div.inner div.c_slider-wrap div.c_slider div.c_slider_container div.c_slider_img-wrap img {
    width: 140vw;
  }
}
@media screen and (min-width: 768px) {
  main section.needs div.inner .scroll-container {
    display: flex;
    justify-content: center;
    /* 3つのテキストブロックをスクロールさせるため、高さを300vhに設定 */
    height: 300vh;
    position: relative;
    width: 76.9230769231vw;
    margin: 0 auto;
    padding: 0 2.3076923077vw;
  }
}
main section.needs div.inner .left-column {
  /* 各テキストブロックが縦に並ぶようにする */
}
@media screen and (min-width: 768px) {
  main section.needs div.inner .left-column {
    width: 50%;
  }
}
@media screen and (min-width: 768px) {
  main section.needs div.inner .text-block {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 4.6153846154vw;
    position: relative;
  }
}
@media screen and (max-width: 767px) {
  main section.needs div.inner .text-block {
    margin-top: 3.3333333333vw;
  }
}
@media screen and (max-width: 767px) {
  main section.needs div.inner .text-block + .text-block {
    margin-top: 10vw;
  }
}
@media screen and (min-width: 768px) {
  main section.needs div.inner .text-block div.image {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  main section.needs div.inner .text-block div.image {
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  main section.needs div.inner .text-block div.image img {
    width: 60vw;
  }
}
@media screen and (max-width: 767px) {
  main section.needs div.inner .text-block div.texts {
    position: relative;
    display: flex;
    margin-top: -17.3333333333vw;
    margin-left: 6.6666666667vw;
  }
}
@media screen and (max-width: 767px) {
  main section.needs div.inner .text-block div.texts div.h {
    position: absolute;
    top: 0;
    left: 0;
  }
}
main section.needs div.inner .text-block div.texts div.h > span {
  display: flex;
  font-family: "Barlow", sans-serif;
  font-weight: 600;
  line-height: 1;
  color: #faf1f0;
  opacity: 0.7;
}
@media screen and (min-width: 768px) {
  main section.needs div.inner .text-block div.texts div.h > span {
    letter-spacing: 0.01em;
    margin-left: -8.4615384615vw;
    font-size: 23.0769230769vw;
  }
}
@media screen and (max-width: 767px) {
  main section.needs div.inner .text-block div.texts div.h > span {
    letter-spacing: 0.01em;
    font-size: 40vw;
  }
}
main section.needs div.inner .text-block div.texts div.h p.sm {
  font-weight: 600;
  color: #ba392d;
}
@media screen and (min-width: 768px) {
  main section.needs div.inner .text-block div.texts div.h p.sm {
    margin-top: -11.5384615385vw;
    margin-left: -1.9230769231vw;
    font-size: 1.2307692308vw;
    position: relative;
  }
}
@media screen and (max-width: 767px) {
  main section.needs div.inner .text-block div.texts div.h p.sm {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-top: 1.3333333333vw;
    margin-left: -2.6666666667vw;
    z-index: 1;
    font-size: 2.6666666667vw;
  }
}
main section.needs div.inner .text-block div.texts div.m {
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  main section.needs div.inner .text-block div.texts div.m {
    margin-top: 24vw;
    margin-left: 32vw;
  }
}
main section.needs div.inner .text-block div.texts h3 {
  color: #b62819;
  font-weight: bold;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  main section.needs div.inner .text-block div.texts h3 {
    margin-top: 1.5384615385vw;
    font-size: 2.7692307692vw;
  }
}
@media screen and (max-width: 767px) {
  main section.needs div.inner .text-block div.texts h3 {
    font-size: 5.8666666667vw;
  }
}
main section.needs div.inner .text-block div.texts p.st {
  line-height: 1.4;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  main section.needs div.inner .text-block div.texts p.st {
    margin-top: 0.7692307692vw;
    font-size: 2.1538461538vw;
  }
}
@media screen and (max-width: 767px) {
  main section.needs div.inner .text-block div.texts p.st {
    margin-top: 2.6666666667vw;
    font-size: 4vw;
  }
}
@media screen and (min-width: 768px) {
  main section.needs div.inner .right-column {
    width: 50%;
    height: 100vh;
    position: sticky; /* スティッキー配置 */
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden; /* はみ出した要素を隠す */
  }
}
@media screen and (max-width: 767px) {
  main section.needs div.inner .right-column {
    display: none;
  }
}
main section.needs div.inner .image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}
main section.needs div.inner .scroll-image {
  transition: 0.4s;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 100vw;
  width: 100%;
  opacity: 0; /* 最初はすべての画像を非表示にする */
}
main section.needs div.inner .scroll-image:first-child {
  opacity: 1;
}
main section.simulation {
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  main section.simulation {
    margin-top: 100px;
    padding: 0 0 80px;
    background: #fff url(../img/top/bg_gray1.png) 0 center/cover no-repeat;
  }
}
@media screen and (max-width: 767px) {
  main section.simulation {
    padding: 0 0 13.3333333333vw;
    background: #fff url(../img/top/sp/bg_gray1.png) 0 0/cover no-repeat;
  }
}
@media screen and (min-width: 768px) {
  main section.simulation div.c_slider-wrap div.slider1 div.c_slider_container div.c_slider_img-wrap img {
    width: 220px;
  }
}
@media screen and (max-width: 767px) {
  main section.simulation div.c_slider-wrap div.slider1 div.c_slider_container div.c_slider_img-wrap img {
    width: 42.6666666667vw;
  }
}
@media screen and (min-width: 768px) {
  main section.simulation div.c_slider-wrap div.slider2 {
    margin-top: -40px;
  }
}
@media screen and (max-width: 767px) {
  main section.simulation div.c_slider-wrap div.slider2 {
    transform: translateY(-6vw);
  }
}
@media screen and (min-width: 768px) {
  main section.simulation div.c_slider-wrap div.slider2 div.c_slider_container {
    gap: 0 60px;
  }
}
@media screen and (max-width: 767px) {
  main section.simulation div.c_slider-wrap div.slider2 div.c_slider_container {
    gap: 0 4vw;
  }
}
@media screen and (min-width: 768px) {
  main section.simulation div.c_slider-wrap div.slider2 div.c_slider_container div.c_slider_img-wrap img {
    width: 1042px;
  }
}
@media screen and (max-width: 767px) {
  main section.simulation div.c_slider-wrap div.slider2 div.c_slider_container div.c_slider_img-wrap img {
    width: 186.6666666667vw;
  }
}
@media screen and (min-width: 768px) {
  main section.simulation div.inner {
    padding: 0 30px;
  }
}
@media screen and (min-width: 768px) {
  main section.simulation div.inner div.c_tit1 {
    margin-top: 60px;
  }
}
@media screen and (max-width: 767px) {
  main section.simulation div.inner div.c_tit1 {
    margin-top: 14.6666666667vw;
    letter-spacing: -0.02em;
  }
}
@media screen and (min-width: 768px) {
  main section.simulation div.inner ul {
    display: flex;
    justify-content: space-between;
    gap: 0 20px;
    max-width: 1100px;
    margin: 50px auto 0;
  }
}
@media screen and (max-width: 767px) {
  main section.simulation div.inner ul {
    margin: 10.6666666667vw 0 0;
    padding: 0 5.3333333333vw;
  }
}
@media screen and (min-width: 768px) {
  main section.simulation div.inner ul li {
    max-width: 340px;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  main section.simulation div.inner ul li {
    display: flex;
    justify-content: center;
    gap: 0 6.6666666667vw;
  }
}
@media screen and (max-width: 767px) {
  main section.simulation div.inner ul li + li {
    margin-top: 8vw;
  }
}
@media screen and (max-width: 767px) {
  main section.simulation div.inner ul li div.image img {
    min-width: 35.6vw;
  }
}
@media screen and (max-width: 767px) {
  main section.simulation div.inner ul li div.texts {
    margin-top: -1.6vw;
  }
}
main section.simulation div.inner ul li div.texts h3 {
  font-weight: bold;
  color: #b7392c;
}
@media screen and (min-width: 768px) {
  main section.simulation div.inner ul li div.texts h3 {
    margin: 15px 0 10px;
  }
}
@media screen and (max-width: 767px) {
  main section.simulation div.inner ul li div.texts h3 {
    font-size: 5.3333333333vw;
  }
}
main section.simulation div.inner ul li div.texts p {
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  main section.simulation div.inner ul li div.texts p {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  main section.simulation div.inner ul li div.texts p {
    margin-top: 0.6666666667vw;
    font-size: 3.7333333333vw;
  }
}
main section.simulation div.inner > p {
  text-align: center;
}
@media screen and (min-width: 768px) {
  main section.simulation div.inner > p {
    margin-top: 40px;
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  main section.simulation div.inner > p {
    margin-top: 6.6666666667vw;
    font-size: 2.6666666667vw;
  }
}
@media screen and (min-width: 768px) {
  main section.simulation div.inner a.c_btn2 {
    margin-top: 40px;
  }
}
@media screen and (max-width: 767px) {
  main section.simulation div.inner a.c_btn2 {
    margin-top: 5.3333333333vw;
    margin-right: 5.3333333333vw;
  }
}
@media screen and (min-width: 768px) {
  main section.lesson {
    margin-top: 110px;
    padding-bottom: 80px;
  }
}
@media screen and (max-width: 767px) {
  main section.lesson {
    margin-top: 13.3333333333vw;
    padding-bottom: 10.6666666667vw;
  }
}
@media screen and (min-width: 768px) {
  main section.lesson div.cont {
    display: flex;
    align-items: flex-start;
  }
}
@media screen and (min-width: 768px) {
  main section.lesson div.cont div.image {
    width: 50%;
    border-radius: 0 30px 30px 0;
    overflow: hidden;
  }
}
@media screen and (min-width: 768px) {
  main section.lesson div.cont div.image picture img {
    width: 100%;
    height: 375px;
    object-fit: cover;
  }
}
@media screen and (max-width: 767px) {
  main section.lesson div.cont div.image picture img {
    width: 94.6666666667vw;
  }
}
@media screen and (min-width: 768px) {
  main section.lesson div.cont div.texts {
    width: 50%;
    margin-top: 65px;
    padding: 0 30px 0 50px;
  }
}
@media screen and (max-width: 767px) {
  main section.lesson div.cont div.texts {
    margin-top: 12vw;
    padding: 0 5.3333333333vw;
  }
}
main section.lesson div.cont div.texts div.c_tit2 {
  display: table;
  position: relative;
  text-align: left;
}
main section.lesson div.cont div.texts div.c_tit2 h2 {
  position: relative;
}
main section.lesson div.cont div.texts div.c_tit2 h2 span.st {
  text-decoration: none;
}
main section.lesson div.cont div.texts div.c_tit2 span.icon {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #b7392c;
  background-color: #f7e0de;
  font-weight: bold;
  position: absolute;
  border-radius: 100%;
  line-height: 1.35;
}
@media screen and (min-width: 768px) {
  main section.lesson div.cont div.texts div.c_tit2 span.icon {
    top: -45px;
    right: -75px;
    width: 100px;
    height: 100px;
    font-size: 18px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  main section.lesson div.cont div.texts div.c_tit2 span.icon {
    top: -90px;
    right: 0px;
  }
}
@media screen and (max-width: 767px) {
  main section.lesson div.cont div.texts div.c_tit2 span.icon {
    top: -9.3333333333vw;
    right: -13.3333333333vw;
    width: 18.6666666667vw;
    height: 18.6666666667vw;
    font-size: 3.3333333333vw;
  }
}
main section.lesson div.cont div.texts p.txt {
  font-weight: 500;
  line-height: 1.7;
}
@media screen and (min-width: 768px) {
  main section.lesson div.cont div.texts p.txt {
    margin: 25px 0 10px;
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  main section.lesson div.cont div.texts p.txt {
    margin: 4vw 0 4vw;
    font-size: 3.7333333333vw;
  }
}
main section.lesson div.cont div.texts div.bg {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #e4f2ef;
  position: relative;
}
@media screen and (min-width: 768px) {
  main section.lesson div.cont div.texts div.bg {
    max-width: 480px;
    height: 100px;
    margin-top: 25px;
    padding: 20px;
  }
}
@media screen and (max-width: 767px) {
  main section.lesson div.cont div.texts div.bg {
    margin: 0 auto;
    padding: 4vw 0;
  }
}
main section.lesson div.cont div.texts div.bg p.st {
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  main section.lesson div.cont div.texts div.bg p.st {
    font-size: 18px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  main section.lesson div.cont div.texts div.bg p.st {
    line-height: 1.3;
  }
}
@media screen and (max-width: 767px) {
  main section.lesson div.cont div.texts div.bg p.st {
    font-size: 4vw;
  }
}
main section.lesson div.cont div.texts div.bg p.st span.cl {
  color: #24b091;
}
main section.lesson div.cont div.texts div.bg p.st span.label {
  position: absolute;
}
@media screen and (min-width: 768px) {
  main section.lesson div.cont div.texts div.bg p.st span.label {
    top: -10px;
    left: -20px;
    width: 53px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  main section.lesson div.cont div.texts div.bg p.st span.label {
    left: -40px;
  }
}
@media screen and (max-width: 767px) {
  main section.lesson div.cont div.texts div.bg p.st span.label {
    top: -2vw;
    left: -2vw;
    width: 13.3333333333vw;
  }
}
@media screen and (min-width: 768px) {
  main section.lesson div.cont div.texts div.bg p.sm {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  main section.lesson div.cont div.texts div.bg p.sm {
    font-size: 3.2vw;
  }
}
@media screen and (min-width: 768px) {
  main section.lesson div.c_slider-wrap {
    padding-top: 30px;
  }
}
@media screen and (max-width: 767px) {
  main section.lesson div.c_slider-wrap {
    padding-top: 6.6666666667vw;
  }
}
main section.lesson div.c_slider-wrap div.slider1 {
  position: relative;
}
@media screen and (min-width: 768px) {
  main section.lesson div.c_slider-wrap div.slider1 {
    margin-top: 15px;
  }
}
@media screen and (min-width: 768px) {
  main section.lesson div.c_slider-wrap div.slider1 div.c_slider_container {
    gap: 0 60px;
  }
}
@media screen and (max-width: 767px) {
  main section.lesson div.c_slider-wrap div.slider1 div.c_slider_container {
    gap: 0 4vw;
  }
}
@media screen and (min-width: 768px) {
  main section.lesson div.c_slider-wrap div.slider1 div.c_slider_container div.c_slider_img-wrap img {
    width: 1100px;
  }
}
@media screen and (max-width: 767px) {
  main section.lesson div.c_slider-wrap div.slider1 div.c_slider_container div.c_slider_img-wrap img {
    width: 186.6666666667vw;
  }
}
@media screen and (min-width: 768px) {
  main section.lesson div.c_slider-wrap div.slider2 {
    margin-top: -130px;
  }
}
@media screen and (max-width: 767px) {
  main section.lesson div.c_slider-wrap div.slider2 {
    margin-top: -21.3333333333vw;
  }
}
@media screen and (min-width: 768px) {
  main section.lesson div.c_slider-wrap div.slider2 div.c_slider_container div.c_slider_img-wrap img {
    width: 1170px;
  }
}
@media screen and (max-width: 767px) {
  main section.lesson div.c_slider-wrap div.slider2 div.c_slider_container div.c_slider_img-wrap img {
    width: 200vw;
  }
}
@media screen and (min-width: 768px) {
  main section.lesson a.c_btn2 {
    margin-top: 50px;
  }
}
@media screen and (max-width: 767px) {
  main section.lesson a.c_btn2 {
    margin-top: 5.3333333333vw;
    margin-right: 5.3333333333vw;
  }
}
@media screen and (min-width: 768px) {
  main section.quality {
    padding-top: 80px;
    padding-bottom: 80px;
    background: url(../img/top/bg_gray2.png) 0 center/cover no-repeat;
  }
}
@media screen and (max-width: 767px) {
  main section.quality {
    padding: 10.6666666667vw 0 53.3333333333vw;
    background: url(../img/top/sp/bg_gray2.png) 0 0/cover no-repeat;
  }
}
@media screen and (min-width: 768px) {
  main section.quality div.inner {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 30px;
  }
}
@media screen and (max-width: 767px) {
  main section.quality div.inner .c_tit1 {
    padding: 0 5.3333333333vw;
  }
}
main section.quality div.inner .c_tit1 h2 {
  text-align: left;
  line-height: 1.3;
}
main section.quality div.inner .c_tit1 h2 span.st {
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  main section.quality div.inner ul {
    display: flex;
    justify-content: space-between;
    gap: 0 20px;
    margin-top: 50px;
  }
}
@media screen and (max-width: 767px) {
  main section.quality div.inner ul {
    margin-top: 8vw;
    padding: 0 5.3333333333vw;
  }
}
main section.quality div.inner ul li {
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  main section.quality div.inner ul li {
    max-width: 340px;
    width: 100%;
    padding: 10px;
    border-radius: 20px;
  }
}
@media screen and (max-width: 767px) {
  main section.quality div.inner ul li {
    padding: 2.6666666667vw;
    border-radius: 4vw;
  }
}
@media screen and (max-width: 767px) {
  main section.quality div.inner ul li + li {
    margin-top: 2.6666666667vw;
  }
}
main section.quality div.inner ul li div.title {
  position: relative;
}
main section.quality div.inner ul li div.title div.set {
  text-align: center;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
main section.quality div.inner ul li div.title div.set h3 {
  font-weight: bold;
  color: #fff;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  main section.quality div.inner ul li div.title div.set h3 {
    font-size: 26px;
  }
}
@media screen and (max-width: 767px) {
  main section.quality div.inner ul li div.title div.set h3 {
    font-size: 5.3333333333vw;
  }
}
main section.quality div.inner ul li div.title div.set p {
  font-family: "Barlow", sans-serif;
  font-weight: bold;
  color: rgba(255, 255, 255, 0.7);
}
@media screen and (min-width: 768px) {
  main section.quality div.inner ul li div.title div.set p {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  main section.quality div.inner ul li div.title div.set p {
    margin-top: 1.3333333333vw;
    font-size: 3.2vw;
  }
}
main section.quality div.inner ul li div.title picture img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  main section.quality div.inner ul li div.texts {
    padding: 30px 19px 25px;
  }
}
@media screen and (max-width: 767px) {
  main section.quality div.inner ul li div.texts {
    display: flex;
    justify-content: space-between;
    padding: 4.6666666667vw 2.6666666667vw 2.6666666667vw;
  }
}
@media screen and (min-width: 768px) {
  main section.quality div.inner ul li div.texts div.txt {
    display: flex;
    align-items: center;
  }
}
@media screen and (max-width: 767px) {
  main section.quality div.inner ul li div.texts div.txt {
    width: 48%;
  }
}
@media screen and (min-width: 768px) {
  main section.quality div.inner ul li div.texts div.txt.star img {
    width: 40px;
  }
}
@media screen and (max-width: 767px) {
  main section.quality div.inner ul li div.texts div.txt.star img {
    width: 8vw;
  }
}
@media screen and (min-width: 768px) {
  main section.quality div.inner ul li div.texts div.txt.good img {
    width: 38px;
  }
}
@media screen and (max-width: 767px) {
  main section.quality div.inner ul li div.texts div.txt.good img {
    width: 7.6vw;
  }
}
@media screen and (min-width: 768px) {
  main section.quality div.inner ul li div.texts div.txt.cleanliness img {
    width: 40px;
  }
}
@media screen and (max-width: 767px) {
  main section.quality div.inner ul li div.texts div.txt.cleanliness img {
    width: 8.1333333333vw;
  }
}
@media screen and (min-width: 768px) {
  main section.quality div.inner ul li div.texts div.txt.club img {
    width: 40px;
  }
}
@media screen and (max-width: 767px) {
  main section.quality div.inner ul li div.texts div.txt.club img {
    width: 8vw;
  }
}
@media screen and (min-width: 768px) {
  main section.quality div.inner ul li div.texts div.txt.customer img {
    width: 40px;
  }
}
@media screen and (max-width: 767px) {
  main section.quality div.inner ul li div.texts div.txt.customer img {
    width: 7.8666666667vw;
  }
}
@media screen and (min-width: 768px) {
  main section.quality div.inner ul li div.texts div.txt.staff img {
    width: 34px;
  }
}
@media screen and (max-width: 767px) {
  main section.quality div.inner ul li div.texts div.txt.staff img {
    width: 6.8vw;
  }
}
@media screen and (min-width: 768px) {
  main section.quality div.inner ul li div.texts div.txt + div.txt {
    margin-top: 15px;
  }
}
@media screen and (min-width: 768px) {
  main section.quality div.inner ul li div.texts div.txt div.image {
    min-width: 40px;
    margin-right: 15px;
  }
}
@media screen and (max-width: 767px) {
  main section.quality div.inner ul li div.texts div.txt div.image {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
main section.quality div.inner ul li div.texts div.txt p {
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  main section.quality div.inner ul li div.texts div.txt p {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  main section.quality div.inner ul li div.texts div.txt p {
    margin-top: 2vw;
    font-size: 3.2vw;
  }
}
main section.quality div.inner ul li div.texts div.txt p span.cl {
  color: #b7392c;
}
main section.quality div.foot {
  position: relative;
}
@media screen and (min-width: 768px) {
  main section.quality div.foot {
    margin-top: 30px;
  }
}
@media screen and (max-width: 767px) {
  main section.quality div.foot {
    margin-top: 10.6666666667vw;
  }
}
main section.quality div.foot div.c_slider-wrap div.c_slider {
  position: relative;
}
@media screen and (min-width: 768px) {
  main section.quality div.foot div.c_slider-wrap div.c_slider {
    margin-top: 15px;
  }
}
@media screen and (min-width: 768px) {
  main section.quality div.foot div.c_slider-wrap div.c_slider div.c_slider_container {
    gap: 0 60px;
  }
}
@media screen and (min-width: 768px) {
  main section.quality div.foot div.c_slider-wrap div.c_slider div.c_slider_container div.c_slider_img-wrap img {
    width: 1100px;
  }
}
@media screen and (max-width: 767px) {
  main section.quality div.foot div.c_slider-wrap div.c_slider div.c_slider_container div.c_slider_img-wrap img {
    width: 186.6666666667vw;
  }
}
main section.quality div.foot p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  main section.quality div.foot p {
    padding: 0 30px;
    font-size: 30px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  main section.quality div.foot p {
    line-height: 1.3;
  }
}
@media screen and (max-width: 767px) {
  main section.quality div.foot p {
    font-size: 4.5333333333vw;
  }
}
main section.review {
  position: relative;
}
@media screen and (min-width: 768px) {
  main section.review {
    margin-top: 80px;
  }
}
@media screen and (max-width: 767px) {
  main section.review {
    padding-bottom: 12vw;
  }
}
main section.review h2 {
  position: absolute;
  font-weight: bold;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  main section.review h2 {
    width: 100%;
    top: 250px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 1100px;
    margin-bottom: -50px;
    font-size: 54px;
  }
}
@media screen and (max-width: 767px) {
  main section.review h2 {
    top: 72vw;
    left: 5.3333333333vw;
    font-size: 7.4666666667vw;
  }
}
main section.review h2 span {
  display: inline-block;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  main section.review h2 span {
    padding: 0 20px;
  }
}
@media screen and (max-width: 767px) {
  main section.review h2 span {
    padding: 0 2.6666666667vw;
  }
}
@media screen and (min-width: 768px) {
  main section.review h2 span:nth-of-type(1) {
    border-radius: 10px 10px 0 0;
  }
}
@media screen and (max-width: 767px) {
  main section.review h2 span:nth-of-type(1) {
    border-radius: 1.3333333333vw 1.3333333333vw 0 0;
  }
}
@media screen and (min-width: 768px) {
  main section.review h2 span:nth-of-type(2) {
    padding-bottom: 10px;
    border-radius: 0 10px 10px 10px;
  }
}
@media screen and (max-width: 767px) {
  main section.review h2 span:nth-of-type(2) {
    margin-top: -1px;
    border-radius: 0 1.3333333333vw 1.3333333333vw 1.3333333333vw;
  }
}
@media screen and (max-width: 767px) {
  main section.review .c_slider-wrap {
    margin-top: -40vw;
  }
}
main section.review .c_slider-wrap .c_slider {
  position: relative;
}
@media screen and (min-width: 768px) {
  main section.review .c_slider-wrap .c_slider {
    margin-top: 15px;
  }
}
@media screen and (max-width: 767px) {
  main section.review .c_slider-wrap .c_slider {
    padding-top: 13.3333333333vw;
  }
}
@media screen and (max-width: 767px) {
  main section.review .c_slider-wrap .c_slider .c_slider_img-wrap {
    padding-bottom: 10vw;
  }
}
@media screen and (min-width: 768px) {
  main section.review .c_slider-wrap .c_slider .c_slider_img-wrap:nth-of-type(odd) img {
    transform: translateY(35px);
  }
}
@media screen and (max-width: 767px) {
  main section.review .c_slider-wrap .c_slider .c_slider_img-wrap:nth-of-type(odd) img {
    transform: translateY(10vw);
  }
}
@media screen and (min-width: 768px) {
  main section.review .c_slider-wrap .c_slider .c_slider_img-wrap img {
    width: 400px;
    margin: 0 14px 35px;
  }
}
@media screen and (max-width: 767px) {
  main section.review .c_slider-wrap .c_slider .c_slider_img-wrap img {
    width: 80vw;
    margin: 0 2vw 5.3333333333vw;
  }
}
@media screen and (min-width: 768px) {
  main section.review div.case {
    margin-top: 150px;
    padding: 0 30px;
  }
}
@media screen and (max-width: 767px) {
  main section.review div.case {
    margin-top: 20vw;
    padding: 0 5.3333333333vw;
  }
}
@media screen and (min-width: 768px) {
  main section.review div.case > section {
    display: flex;
    justify-content: space-between;
    max-width: 1150px;
    width: 100%;
    margin: 0 auto;
  }
}
@media screen and (min-width: 768px) {
  main section.review div.case > section + section {
    margin-top: 50px;
  }
}
@media screen and (max-width: 767px) {
  main section.review div.case > section + section {
    margin-top: 10.6666666667vw;
  }
}
@media screen and (max-width: 767px) {
  main section.review div.case > section div.cont div.c_tit3 p {
    font-size: 4vw;
  }
}
@media screen and (min-width: 768px) {
  main section.review div.case > section div.cont div.c_tit3 h3 {
    margin: 15px 0;
  }
}
main section.review div.case > section div.cont > p {
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  main section.review div.case > section div.cont > p {
    margin-top: 10px;
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  main section.review div.case > section div.cont > p {
    font-size: 3.7333333333vw;
  }
}
@media screen and (max-width: 767px) {
  main section.review div.case > section div.cont picture {
    display: block;
    margin: 6.6666666667vw 0;
  }
}
main section.review > p {
  text-align: center;
}
@media screen and (min-width: 768px) {
  main section.review > p {
    margin-top: 20px;
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  main section.review > p {
    margin-top: 6.6666666667vw;
    font-size: 2.9333333333vw;
  }
}
@media screen and (min-width: 768px) {
  main section.price {
    display: flex;
    margin-top: 150px;
    position: relative;
  }
}
@media screen and (max-width: 767px) {
  main section.price {
    margin-top: 12vw;
    padding-bottom: 6.6666666667vw;
  }
}
@media screen and (min-width: 768px) {
  main section.price div.image img {
    width: 70vw;
    height: 380px;
    object-fit: cover;
    object-position: 0 0;
    border-radius: 0px 30px 30px 0px;
  }
}
@media screen and (max-width: 767px) {
  main section.price div.image img {
    width: 94.6666666667vw;
  }
}
main section.price div.texts {
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  main section.price div.texts {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    margin-top: 50px;
    margin-left: -30px;
    padding: 60px 30px 60px 60px;
    border-radius: 30px 0 0 30px;
    width: 50.7692307692vw;
  }
}
@media screen and (max-width: 767px) {
  main section.price div.texts {
    display: block;
    width: 94.6666666667vw;
    margin: -8vw 0 0 auto;
    padding: 8vw;
    position: relative;
    z-index: 1;
    border-radius: 5.3333333333vw 0 0 0;
  }
}
main section.price div.texts > p {
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  main section.price div.texts > p {
    line-height: 1.8;
    margin: 30px 0 20px;
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  main section.price div.texts > p {
    margin: 4vw 0 4vw;
    font-size: 3.7333333333vw;
  }
}
@media screen and (min-width: 768px) {
  main section.price div.texts a.c_btn2 {
    font-size: 22px;
  }
}
@media screen and (max-width: 767px) {
  main section.price div.texts a.c_btn2 {
    margin-left: auto;
  }
}
@media screen and (min-width: 768px) {
  main section.info {
    margin-top: 200px;
    padding: 0 30px;
  }
}
@media screen and (max-width: 767px) {
  main section.info {
    margin-top: 8vw;
    padding: 0 5.3333333333vw 26.6666666667vw;
    position: relative;
  }
}
@media screen and (min-width: 768px) {
  main section.info div.inner {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px 80px;
  }
}
@media screen and (min-width: 768px) {
  main section.info div.inner div.title a.c_btn2 {
    margin-top: 40px;
  }
}
@media screen and (max-width: 767px) {
  main section.info div.inner div.title a.c_btn2 {
    position: absolute;
    bottom: 8vw;
    right: 5.3333333333vw;
  }
}
@media screen and (min-width: 768px) {
  main section.info div.inner ul {
    max-width: 780px;
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  main section.cta {
    margin-top: 150px;
  }
}
@media screen and (max-width: 767px) {
  main section.cta {
    margin-top: 10.6666666667vw;
  }
}
main section.cta h2 {
  text-align: center;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  main section.cta h2 {
    font-size: 40px;
  }
}
@media screen and (max-width: 767px) {
  main section.cta h2 {
    font-size: 7.4666666667vw;
  }
}
main section.cta div.btns {
  display: flex;
}
@media screen and (min-width: 768px) {
  main section.cta div.btns {
    margin-top: 30px;
  }
}
@media screen and (max-width: 767px) {
  main section.cta div.btns {
    margin-top: 4vw;
  }
}
main section.cta div.btns a {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 768px) {
  main section.cta div.btns a {
    transition: 0.4s;
    width: 50%;
    height: 140px;
    gap: 0 10px;
  }
}
@media screen and (max-width: 767px) {
  main section.cta div.btns a {
    width: 50%;
    height: 18.4vw;
    gap: 0 2vw;
  }
}
main section.cta div.btns a:nth-of-type(1) {
  background-color: #b23224;
}
main section.cta div.btns a:nth-of-type(2) {
  background-color: #bc392b;
}
main section.cta div.btns a span.icon {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  background-color: #fff;
  font-weight: 600;
  color: #b7392c;
}
@media screen and (min-width: 768px) {
  main section.cta div.btns a span.icon {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  main section.cta div.btns a span.icon {
    width: 7.6vw;
    height: 7.6vw;
    font-size: 4.5333333333vw;
  }
}
main section.cta div.btns a span.txt {
  font-weight: bold;
  color: #fff;
}
@media screen and (min-width: 768px) {
  main section.cta div.btns a span.txt {
    font-size: 28px;
  }
}
@media screen and (max-width: 767px) {
  main section.cta div.btns a span.txt {
    font-size: 4.5333333333vw;
  }
}
@media screen and (min-width: 768px) {
  main section.cta div.btns a span.c_arrow1 {
    margin-left: 5px;
  }
}
@media screen and (min-width: 768px) {
  main section.cta div.btns a:hover {
    background-color: #800b06;
  }
}
@media screen and (min-width: 768px) {
  main section.cta div.btns a:hover span.c_arrow1 {
    transform: translateX(5px);
  }
}