@charset "utf-8";
@font-face {
  font-family: "Noto Sans CJK JP", sans-serif;
  font-style: normal;
  font-weight: 400;
  src: url("/2024renew_assets/fonts/NotoSansCJKjp-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "Noto Sans CJK JP", sans-serif;
  font-style: normal;
  font-weight: 700;
  src: url("/2024renew_assets/fonts/NotoSansCJKjp-Bold.ttf") format("truetype");
}
@font-face {
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  font-weight: 400;
  src: url("/2024renew_assets/fonts/NotoSansJP-Regular.otf") format("opentype");
}
@font-face {
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  font-weight: 700;
  src: url("/2024renew_assets/fonts/NotoSansJP-Bold.otf") format("opentype");
}

/* ------------------------------------------------------------
Base + Utility Classes
------------------------------------------------------------ */

/* 基本設定 */
html {
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
  font-size: 62.5%; /* 16px × 62.5% = 10px */
  /* scroll-behavior: smooth; */
}

body {
  font-size: 1.6rem;
  line-height: 1.7;
  color: #333;
}

/* ------------------------------------------------------------
共通 non-SP / non-PC 表示制御
------------------------------------------------------------ */
#page-container,
#page-container header a {
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
}

@media (min-width: 769px) {
  #page-container .sp-only {
    display: none !important;
  }
  #page-container img {
    height: auto;
    vertical-align: bottom;
  }
}

@media (max-width: 768px) {
  #page-container .pc-only {
    display: none !important;
  }
  #page-container img {
    width: 100%;
    height: auto;
    vertical-align: bottom;
  }
}

/* ------------------------------------------------------------
aリンク 共通
------------------------------------------------------------ */
#page-container a {
  text-decoration: none;
}
#page-container a:hover {
  opacity: 0.7;
}

/* 矢印リンク */
#page-container .arrow-link {
  position: relative;
  padding-left: 30px;
  color: #333;
}
#page-container .arrow-link::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  width: 20px;
  height: 20px;
  background-image: url("/company/lp/fx/lp10/img/arrow_red.png");
  background-size: contain;
  background-repeat: no-repeat;
}

/* シャドウボックス */
#page-container .box-shadow {
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.05);
}

/* Flexユーティリティ */
#page-container .flex {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
}
#page-container .flex-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

@media (max-width: 768px) {
  #page-container .flex {
    gap: calc(20 * (100vw / 375));
  }
  #page-container .flex-item {
    gap: calc(10 * (100vw / 375));
  }
}

/* テキスト整列ユーティリティ */
#page-container .ta-left {
  text-align: left;
}
#page-container .ta-right {
  text-align: right;
}
#page-container .ai-center {
  display: block;
  margin: 0 auto;
}

/* フォントウエイト、サイズ */
#page-container .fw-bold {
  font-weight: 700;
}
#page-container .fw-block {
  font-weight: 900;
}
#page-container .fs-s {
  font-size: 1.4rem;
}
#page-container .fs-l {
  font-size: 2rem;
}
#page-container .fs-xl {
  font-size: 2.4rem;
}
#page-container .fs-xxl {
  font-size: 3.2rem;
}

@media (max-width: 768px) {
  #page-container .fs-l {
    font-size: 1.6rem;
  }
  #page-container .fs-xl {
    font-size: 1.8rem;
  }
  #page-container .fs-xxl {
    font-size: 2.4rem;
  }
}

/* 外部リンクアイコン */
#page-container .external-link {
  display: inline-block;
  position: relative;
  align-self: flex-start;
  text-decoration: underline;
  color: #0066aa;
}
#page-container .external-link::after {
  content: "";
  display: inline-block;
  width: 1.375em;
  height: 1.375em;
  background-image: url("/2024renew_assets/imgs/common/icon_external_link.svg");
  background-size: contain;
  vertical-align: -0.3em;
  margin-left: 4px;
}

/* トップに戻るボタン */
#toTopBtn {
  display: none;
  position: fixed;
  bottom: 160px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: rgba(0, 0, 0, 0.3);
  border: none;
  border-radius: 50%;
  cursor: pointer;
}
#toTopBtn::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-top: 3px solid white;
  border-left: 3px solid white;
  transform: rotate(45deg);
  position: absolute;
  top: 20px;
  left: 18px;
}
#toTopBtn:hover {
  opacity: 0.7;
}

@media (max-width: 768px) {
  #toTopBtn {
    bottom: calc(100 * (100vw / 375));
    right: calc(10 * (100vw / 375));
  }
}

/* スクロール固定CTAバナー */
#page-container .scroll-cta {
  display: none;
  width: 100vw;
  padding: 10px 0;
  background-color: rgba(255, 255, 255, 0.5);
  position: fixed;
  bottom: 0;
  z-index: 999;
  box-shadow: 0 -5px 5px rgba(0, 0, 0, 0.05);
}
@media (max-width: 768px) {
  #page-container .scroll-cta img {
    width: calc(335 * (100vw / 375));
    margin: 0 auto;
  }
}

/* ------------------------------------------------------------
レイアウト
------------------------------------------------------------ */
/* キービジュアル（KV） */
#page-container .kv {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 103px;
}

#page-container .kv img {
  width: 100vw;
  min-width: 1200px;
}

@media (max-width: 768px) {
  #page-container .kv {
    margin-top: calc(55 * (100vw / 375));
  }

  #page-container .kv img {
    width: 100%;
    min-width: 100%;
  }
}

/* Intro セクション */
#page-container .intro {
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  padding: 40px;
  gap: 20px;
}

#page-container .intro .intro-bubble {
  margin: -20px auto;
}

#page-container .intro .icon {
  width: 100px;
  margin-bottom: 20px;
}

#page-container .intro .flex {
  width: 1200px;
  margin: 0 auto;
  align-items: stretch;
}

#page-container .intro .dot-line {
  width: 1px;
  height: auto;
  background-image: linear-gradient(180deg, #cccccc 4px, transparent 1px);
  background-size: 1px 8px;
}

#page-container .intro .flex-item {
  flex: 1;
  width: 300px;
  gap: 0;
  padding: 20px 0;
  text-align: center;
}

#page-container .intro .intro-text {
  font-size: 2.4rem;
  text-align: center;
  font-weight: 700;
}

@media (max-width: 768px) {
  #page-container .intro {
    padding: calc(20 * (100vw / 375));
    gap: calc(20 * (100vw / 375));
  }

  #page-container .intro .intro-bubble {
    margin: 0 auto;
  }

  #page-container .intro .icon {
    width: calc(70 * (100vw / 375));
    margin-bottom: 0;
  }

  #page-container .intro .flex {
    width: calc(335 * (100vw / 375));
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: calc(20 * (100vw / 375));
  }

  #page-container .intro .dot-line {
    display: none;
  }

  #page-container .intro .flex-item {
    justify-content: flex-start;
    flex-direction: row;
    width: 100%;
    gap: calc(20 * (100vw / 375));
    padding: 0;
    line-height: 1.4;
    text-align: left;
  }

  #page-container .intro .intro-text {
    font-size: 1.6rem;
    text-align: left;
  }
}

/* Solution セクション */
#page-container .solution {
  background-color: #f2f7ff;
  display: flex;
  flex-direction: column;
  padding: 80px;
  gap: 80px;
}

#page-container .solution .solution-title {
  margin-bottom: -70px;
}

#page-container .solution .solution-text {
  text-align: center;
  margin-bottom: -40px;
  font-size: 2.4rem;
  font-weight: 700;
}

#page-container .solution .solution-anchor {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  justify-content: center;
}

#page-container .solution .solution-bnr {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#page-container .solution .heading-pop {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 2.4rem;
  position: relative;
  width: fit-content;
  width: -moz-fit-content;
}

#page-container .solution .heading-pop::before,
#page-container .solution .heading-pop::after {
  content: "";
  width: 16px;
  height: 14px;
  background-image: url("/company/lp/fx/lp10/img/icon_heading_pop.svg");
}

#page-container .solution .heading-pop::after {
  transform: scaleX(-1);
}

#page-container .solution-cnt {
  width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

@media (max-width: 768px) {
  #page-container .solution {
    gap: calc(40 * (100vw / 375));
    padding: calc(40 * (100vw / 375)) calc(20 * (100vw / 375));
    box-sizing: border-box;
  }

  #page-container .solution .solution-title {
    margin-bottom: 0;
  }

  #page-container .solution .solution-text {
    margin: calc(-30 * (100vw / 375)) 0 calc(-20 * (100vw / 375));
    font-size: 1.6rem;
  }

  #page-container .solution .solution-anchor {
    flex-direction: column;
    gap: calc(10 * (100vw / 375));
  }

  #page-container .solution .solution-bnr {
    gap: calc(10 * (100vw / 375));
  }

  #page-container .solution .heading-pop {
    font-size: 1.6rem;
    line-height: 1.4;
    gap: calc(10 * (100vw / 375));
    text-align: center;
  }

  #page-container .solution-cnt {
    width: 100%;
    gap: calc(20 * (100vw / 375));
  }
}

/* ワンポイント解説ブロック */
#page-container .solution-cnt .point {
  width: 1000px;
  margin: 0 auto;
  border-radius: 10px;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  padding: 30px;
  box-sizing: border-box;
  gap: 20px;
  text-align: left;
  background-image: url("/company/lp/fx/lp10/img/bg-dot.png");
  background-repeat: repeat;
}

#page-container .solution-cnt .point h4 {
  font-weight: 900;
  font-size: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

#page-container .solution-cnt .point em {
  font-weight: 700;
  color: #e60000;
}

#page-container .solution-cnt .point .point-inner {
  background-color: #f8f8f8;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 30px;
  border-radius: 10px;
}

#page-container .solution-cnt .point .point-inner h5 {
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
}

@media (max-width: 768px) {
  #page-container .solution-cnt .point {
    width: 100%;
    padding: calc(20 * (100vw / 375));
    gap: calc(20 * (100vw / 375));
  }

  #page-container .solution-cnt .point h4 {
    font-size: 2rem;
    gap: calc(20 * (100vw / 375));
    justify-content: flex-start;
  }

  #page-container .solution-cnt .point h4 img {
    width: calc(20 * (100vw / 375));
  }

  #page-container .solution-cnt .point .point-inner {
    gap: calc(10 * (100vw / 375));
    padding: calc(10 * (100vw / 375));
  }

  #page-container .solution-cnt .point .point-inner h5 {
    font-size: 1.6rem;
  }
}

/* アコーディオン */
#page-container .solution .accordion-toggle {
  display: none;
}

#page-container .solution .accordion-btn .icon {
  cursor: pointer;
}

#page-container .solution .open-icon {
  display: inline;
}

#page-container .solution .close-icon {
  display: none;
}

#page-container .solution .accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

#page-container .solution .accordion-toggle:checked ~ .accordion-content {
  max-height: 1000px;
  padding-bottom: 40px;
}

#page-container .accordion-toggle:checked ~ .accordion-btn .open-icon {
  display: none;
}

#page-container .accordion-toggle:checked ~ .accordion-btn .close-icon {
  display: inline;
}

@media (max-width: 768px) {
  #page-container .solution .accordion-toggle:checked ~ .accordion-content {
    max-height: calc(2000 * (100vw / 375));
    padding-bottom: calc(20 * (100vw / 375));
  }
}

/* CTA セクション */
#page-container .cta {
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 80px;
  text-align: center;
}

#page-container .cta .bg-red,
#page-container .cta .bg-orange {
  width: 590px;
  border-radius: 10px;
  padding: 40px 0;
}

#page-container .cta .bg-red {
  background-color: #fef7f7;
}
#page-container .cta .text-red {
  color: #e60000;
}

#page-container .cta .bg-orange {
  background-color: #fffaf3;
}
#page-container .cta .text-orange {
  color: #ff6f00;
}

#page-container .cta h3 {
  font-size: 6rem;
  font-weight: 900;
  text-align: center;
  line-height: 1.4;
}

@media (max-width: 768px) {
  #page-container .cta {
    gap: calc(20 * (100vw / 375));
    padding: calc(40 * (100vw / 375)) calc(20 * (100vw / 375));
    box-sizing: border-box;
  }

  #page-container .cta .flex {
    flex-direction: column;
  }

  #page-container .cta .bg-red,
  #page-container .cta .bg-orange {
    width: 100%;
    padding: calc(20 * (100vw / 375));
    gap: calc(20 * (100vw / 375));
    box-sizing: border-box;
  }

  #page-container .cta h3 {
    font-size: 2.4rem;
  }
}

/* Merit セクション */
#page-container .merit {
  background-color: #fffbf6;
  display: flex;
  flex-direction: column;
  gap: 80px;
  padding: 80px;
  text-align: center;
}

#page-container .merit .merit-anchor {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  justify-content: center;
}

#page-container .merit-cnt {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

#page-container .merit-cnt h3 {
  font-size: 4.8rem;
  font-weight: 900;
}
#page-container .merit-cnt h3 em {
  color: #e60000;
  font-weight: 900;
}

#page-container .merit-inner {
  width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#page-container .merit-inner.bg-white {
  background-color: #fff;
  border-radius: 10px;
  padding: 30px;
}

#page-container .merit .bg-white + .bg-white {
  margin-top: -20px;
}

#page-container .merit-inner .flex {
  width: 100%;
  justify-content: flex-start !important;
}
#page-container .merit-inner .flex-item {
  align-items: flex-start !important;
  text-align: left;
}

@media (max-width: 768px) {
  #page-container .merit {
    gap: calc(40 * (100vw / 375));
    padding: calc(40 * (100vw / 375)) calc(20 * (100vw / 375));
    box-sizing: border-box;
  }

  #page-container .merit .merit-anchor {
    flex-direction: column;
    gap: calc(10 * (100vw / 375));
  }

  #page-container .merit-cnt {
    gap: calc(20 * (100vw / 375));
  }

  #page-container .merit-cnt h3 {
    font-size: 2.4rem;
  }

  #page-container .merit-cnt h3 img {
    width: calc(100 * (100vw / 375));
    margin-bottom: calc(10 * (100vw / 375));
  }

  #page-container .merit-inner {
    width: calc(335 * (100vw / 375));
    gap: calc(20 * (100vw / 375));
  }

  #page-container .merit-inner.bg-white {
    border-radius: 10px;
    padding: calc(20 * (100vw / 375));
    box-sizing: border-box;
  }

  #page-container .merit .bg-white + .bg-white {
    margin-top: 0;
  }

  #page-container .merit-inner .flex {
    width: 100%;
    flex-direction: column-reverse;
    align-items: center;
  }

  #page-container .merit-inner .flex-item img {
    width: calc(200 * (100vw / 375));
  }
}

/* merit03（デバイスとアプリ紹介） */
#merit03 .merit-inner {
  gap: 40px;
}
#merit03 .device {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#merit03 .device .name {
  width: 100px;
  color: #fff;
  background-color: #e60000;
  text-align: center;
  font-weight: 700;
  border-radius: 4px;
  margin: 0 auto;
}
#merit03 .app {
  width: 670px;
  box-sizing: border-box;
  color: #fff;
  background-color: #00a696;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-radius: 10px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  #merit03 .merit-inner {
    gap: calc(20 * (100vw / 375));
  }
  #merit03 .device {
    gap: calc(10 * (100vw / 375));
  }
  #merit03 .device .name {
    width: auto;
    padding: 0 calc(20 * (100vw / 375));
  }
  #merit03 .app {
    width: 100%;
    padding: calc(10 * (100vw / 375));
    gap: calc(10 * (100vw / 375));
  }
}

/* footer */
.footer {
  margin-bottom: 120px;
}
.footer .footer-top {
  background-color: #f2f7ff;
  padding: 80px 0;
}
.footer .footer-top .footer-inner {
  width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer .footer-top .footer-inner ul li {
  position: relative;
  padding-left: 2rem;
}
.footer .footer-top .footer-inner ul li::before {
  position: absolute;
  content: "・";
  top: 0;
  left: 0;
}
.footer .footer-middle {
  background-color: #fff;
  padding: 40px;
}
.footer .footer-middle .footer-inner {
  width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 40px;
}
.footer .footer-middle .footer-inner .footer-item {
  flex: 1;
  box-sizing: border-box;
}
.footer .footer-bottom {
  background-color: #4d4d4d;
  color: #ffff;
  padding: 20px 0;
  text-align: center;
  font-size: 1.4rem;
}

@media (max-width: 768px) {
  .footer {
    margin-bottom: calc(86 * (100vw / 375));
  }
  .footer .footer-top {
    padding: calc(20 * (100vw / 375)) 0;
  }
  .footer .footer-top .footer-inner {
    width: calc(335 * (100vw / 375));
    gap: calc(20 * (100vw / 375));
    font-size: 1.4rem;
  }
  .footer .footer-middle {
    padding: calc(20 * (100vw / 375));
  }
  .footer .footer-middle .footer-inner {
    flex-direction: column;
    width: 100%;
    gap: calc(20 * (100vw / 375));
  }
  .footer .footer-bottom {
    padding: calc(10 * (100vw / 375));
    box-sizing: border-box;
    font-size: 1.2rem;
  }
}

/* modal（モーダル） */
.bnr_cashback {
  cursor: pointer;
}
.bnr_cashback:hover {
  opacity: 0.7;
}
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}
.modal .modal-content {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60vw;
  max-width: 1000px;
  height: 80vh;
  background: #fff;
  overflow: auto;
  padding: 40px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.modal .modal-content h2 {
  font-size: 2.4rem;
  font-weight: 900;
  color: #e60000;
}
.modal .close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 3rem;
  color: #aaa;
  cursor: pointer;
}
.modal .close:hover {
  color: #000;
}
@media (max-width: 768px) {
  .modal .modal-content {
    width: calc(335 * (100vw / 375));
    max-width: calc(335 * (100vw / 375));
    height: 90vh;
    padding: calc(40 * (100vw / 375)) calc(20 * (100vw / 375)) calc(20 * (100vw / 375));
    gap: calc(40 * (100vw / 375));
  }
  .modal .modal-content h2 {
    font-size: 1.8rem;
    line-height: 1.4;
  }
  .modal .close {
    top: calc(5 * (100vw / 375));
    right: calc(20 * (100vw / 375));
    font-size: 2rem;
  }
}

/* モーダル内テーブル */
.table {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  border: 1px solid #cccccc;
}
.table colgroup col {
  width: 50%;
}
.table thead th {
  background-color: #e60000;
  color: #fff;
  border: 1px solid #cccccc;
  text-align: center;
  padding: 10px;
}
.table tbody tr:nth-child(odd) td {
  background-color: #ffffff;
  border: 1px solid #cccccc;
  text-align: center;
  padding: 10px;
}
.table tbody tr:nth-child(even) td {
  background-color: #e9e9e9;
  border: 1px solid #cccccc;
  text-align: center;
  padding: 10px;
}
@media (max-width: 768px) {
  .table {
    max-width: 100%;
    font-size: 1.4rem;
  }
  .table thead th,
  .table tbody td {
    padding: calc(5 * (100vw / 375));
  }
}

/* SP用 Swiper（画像） */
.swiper_sp_wrapper {
  max-width: 498px;
  position: relative;
  margin: 20px auto 0;
}
.swiper_sp_wrapper .app-icon {
  width: 50px;
  position: absolute;
  right: 32%;
  z-index: 2;
  top: -22px;
}
.swiper_sp_wrapper .app-icon img {
  width: 100%;
}

.swiper_sp {
  width: 498px;
  margin: 0 auto -20px;
  text-align: center;
  position: unset !important;
}
.swiper_sp_wrapper .slider_img1,
.swiper_sp_wrapper .slider_img2 {
  margin-bottom: 40px;
}
.swiper_sp_wrapper .slider_img1 img {
  width: 111.53px;
}
.swiper_sp_wrapper .slider_img2 img {
  width: 159px;
}
.swiper_sp_wrapper .swiper-slide {
  opacity: 0.3;
  transform: scale(0.7);
  transition: 0.7s;
}
.swiper_sp_wrapper .swiper-slide img {
  height: auto;
  width: 100%;
}
.swiper_sp_wrapper .swiper-slide-active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.swiper_sp_wrapper .swiper-button-prev,
.swiper_sp_wrapper .swiper-button-next {
  height: 34.72px;
  width: 18.28px;
  z-index: 1;
}
.swiper_sp_wrapper .swiper-button-prev::after,
.swiper_sp_wrapper .swiper-button-next::after {
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  height: 34.72px;
  width: 18.28px;
  background-position: bottom;
}
.swiper_sp_wrapper .swiper-button-prev::after {
  background-image: url("/company/lp/fx/lp10/img/slick-prev.png");
}
.swiper_sp_wrapper .swiper-button-next::after {
  background-image: url("/company/lp/fx/lp10/img/slick-next.png");
}
.swiper_sp_wrapper .swiper-button-prev {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -60px;
  margin: auto;
}
.swiper_sp_wrapper .swiper-button-next {
  position: absolute;
  top: 0;
  bottom: 0;
  right: -60px;
  margin: auto;
}

.swiper_sp .swiper-pagination {
  height: 30px;
  top: 340px !important;
  z-index: 1;
}
.swiper_sp .swiper-pagination-bullet-active {
  background-color: #e60000;
}

@media (max-width: 768px) {
  .swiper_sp_wrapper {
    max-width: 100%;
    margin: calc(20 * (100vw / 375)) auto 0;
  }
  .swiper_sp_wrapper .app-icon {
    width: calc(50 * (100vw / 375));
    top: calc(-22 * (100vw / 375));
  }
  .swiper_sp {
    width: 100%;
    margin: 0 auto calc(-20 * (100vw / 375));
  }
  .swiper_sp_wrapper .slider_img1,
  .swiper_sp_wrapper .slider_img2 {
    margin-bottom: calc(40 * (100vw / 375));
  }
  .swiper_sp_wrapper .slider_img1 img {
    width: calc(60 * (100vw / 375));
  }
  .swiper_sp_wrapper .slider_img2 img {
    width: calc(100 * (100vw / 375));
  }
  /* .swiper_sp_wrapper .swiper-button-prev,
  .swiper_sp_wrapper .swiper-button-next {
    display: none;
  } */
  .swiper_sp_wrapper .swiper-button-prev {
    left: 0;
  }
  .swiper_sp_wrapper .swiper-button-next {
    right: 0;
  }
  .swiper_sp .swiper-pagination {
    height: calc(30 * (100vw / 375));
    top: calc(190 * (100vw / 375)) !important;
  }
}

/* PC用 Swiper（画像） */
.swiper_pc_wrapper {
  max-width: 870px;
  position: relative;
  margin: 20px auto 0;
}
.swiper_pc {
  width: 870px;
  margin: 0 auto;
  text-align: center;
  position: unset;
}
.swiper_pc_wrapper .slider_img1,
.swiper_pc_wrapper .slider_img2 {
  margin-bottom: 40px;
}
.swiper_pc_wrapper .slider_img1 img {
  width: 182px !important;
}
.swiper_pc_wrapper .slider_img2 img {
  width: 100% !important;
}
.swiper_pc_wrapper .swiper-slide {
  opacity: 0.3;
  transform: scale(0.62) !important;
  transition: 0.7s;
}
.swiper_pc_wrapper .swiper-slide img {
  height: auto;
  width: 100%;
}
.swiper_pc_wrapper .swiper-slide-active {
  opacity: 1;
  transform: scale(1) !important;
  z-index: 1;
}

.swiper_pc_wrapper .swiper-button-prev,
.swiper_pc_wrapper .swiper-button-next {
  height: 34.72px;
  width: 18.28px;
  z-index: 1;
}
.swiper_pc_wrapper .swiper-button-prev::after,
.swiper_pc_wrapper .swiper-button-next::after {
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  height: 34.72px;
  width: 18.28px;
  background-position: bottom;
}
.swiper_pc_wrapper .swiper-button-prev::after {
  background-image: url("/company/lp/fx/lp10/img/slick-prev.png");
}
.swiper_pc_wrapper .swiper-button-next::after {
  background-image: url("/company/lp/fx/lp10/img/slick-next.png");
}
.swiper_pc_wrapper .swiper-button-prev {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 30px;
  margin: auto;
}
.swiper_pc_wrapper .swiper-button-next {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 30px;
  margin: auto;
}
.swiper_pc .swiper-pagination {
  height: 30px;
  top: 230px !important;
  z-index: 1;
}
.swiper_pc .swiper-pagination-bullet-active {
  background-color: #e60000;
}

@media (max-width: 768px) {
  .swiper_pc_wrapper {
    max-width: 100%;
    margin: calc(20 * (100vw / 375)) auto 0;
  }

  .swiper_pc {
    width: 80%;
  }

  .swiper_pc_wrapper .slider_img1,
  .swiper_pc_wrapper .slider_img2 {
    margin-bottom: calc(40 * (100vw / 375));
  }

  .swiper_pc_wrapper .slider_img1 img,
  .swiper_pc_wrapper .slider_img2 img {
    width: 100% !important;
  }

  /* .swiper_pc_wrapper .swiper-button-prev,
  .swiper_pc_wrapper .swiper-button-next {
    display: none;
  } */
  .swiper_pc_wrapper .swiper-button-prev {
    left: 0;
  }
  .swiper_pc_wrapper .swiper-button-next {
    right: 0;
  }

  .swiper_pc .swiper-pagination {
    height: calc(30 * (100vw / 375));
    top: calc(160 * (100vw / 375)) !important;
  }
}

/* SP用テキスト：Swiper テキスト */

.swiper_text_sp {
  width: 100%;
}
.swiper_text_sp .swiper-wrapper {
  width: 100%;
  margin: 0 auto;
}
.swiper_text_sp .swiper-slide {
  width: 100%;
  height: auto;
  position: relative;
}
.swiper_text_sp .slider_text_ttl {
  width: 100%;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 auto 20px;
}
.swiper_text_sp .slider_text_p {
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .swiper_text_sp .slider_text_ttl {
    font-size: 1.8rem;
    margin: 0 auto calc(20 * (100vw / 375));
  }
  .swiper_text_sp .slider_text_p {
    text-align: left;
  }
}

/* PC用テキスト：Swiper テキスト */
.swiper_text_pc {
  width: 100%;
}
.swiper_text_pc .swiper-wrapper {
  width: 100%;
  margin: 0 auto;
}
.swiper_text_pc .swiper-slide {
  width: 100%;
  height: auto;
  position: relative;
}
.swiper_text_pc .slider_text_ttl {
  width: 100%;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 auto 20px;
}
.swiper_text_pc .slider_text_p {
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .swiper_text_pc .slider_text_ttl {
    font-size: 1.8rem;
    margin: 0 auto calc(20 * (100vw / 375));
  }
  .swiper_text_pc .slider_text_p {
    text-align: left;
  }
}
