<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;600;700&amp;display=swap");

/*----------------------------------------
共通
----------------------------------------*/
html {
  scroll-behavior: smooth;
  font-size: 62.5%; /*1rem=10px*/
  height: 100%;
}

body {
  font-size: 1.6rem; /*指定がない場合16pxに調整*/
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  line-height: 2;
  color: #444;
  height: 100%;
}

body:after {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: #fbfcdb;
  background: -moz-linear-gradient(top, #e9defa 0%, #fbfcdb 100%); /*FireFox*/
  background: -webkit-linear-gradient(top, #e9defa 0%, #fbfcdb 100%); /*Safari・Chrome*/
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fbcacb', endColorstr='#f79697',GradientType=0 ); /*IE9以下*/
  background: linear-gradient(to bottom, #e9defa 0%, #fbfcdb 100%); /*正規*/
  z-index: -9999;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

/*for PC*/
@media screen and (min-width: 769px) {
  img {
    vertical-align: bottom;
  }

  .sp-view {
    display: none !important;
  }

  a {
    color: #444;
  }

  a:hover {
    opacity: 0.7;
  }
}

/*for SP*/
@media screen and (max-width: 768px) {
  img {
    width: 100%;
    vertical-align: bottom;
  }

  .pc-view {
    display: none !important;
  }

  a {
    color: #444;
  }
}

/*----------------------------------------
#page-container 共通
----------------------------------------*/

#page-container {
  width: 100%;
  background-image: url("/item/fx/sys/swap_1/img/bg_pc.png");
  background-position: bottom;
  background-repeat: repeat-x;
  background-attachment: fixed;
}

#page-container .window {
  width: 2rem;
  height: 2rem;
  vertical-align: middle;
}

#page-container .bg-yellow {
  width: 1200px;
  margin: 0 auto;
  background-color: #fcd75b;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 80px 0;
}

#page-container .bg-purple {
  width: 1200px;
  margin: 0 auto;
  background-color: #ede5f3;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 80px 0;
}

#page-container .bg-beige {
  width: 1200px;
  margin: 0 auto;
  background-color: #fffae2;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 80px 0;
}

#page-container .bg-white {
  width: 1200px;
  margin: 0 auto;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 80px 0;
}

#page-container .block {
  width: 860px;
  margin: 0 auto;
  padding: 80px;
  background-color: #fff;
  border-radius: 50px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

#page-container .block .block-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#page-container p.note {
  font-size: 1.2rem;
  font-weight: 400;
  text-align: left;
}

#page-container a.button {
  position: relative;
  width: 400px;
  height: 50px;
  line-height: 50px;
  border-radius: 25px;
  padding: 0 10px;
  margin: 0 auto;
  color: #fff;
  background-color: #444;
  text-decoration: none;
  text-align: center;
}

#page-container a.button::after {
  position: absolute;
  content: "";
  width: 9px;
  height: 9px;
  border: 0;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  top: calc(50% - 4px);
  right: 20px;
  transform: rotate(45deg);
}

#page-container span.red {
  color: #ef346f;
}

#page-container span.yellow {
  background-color: #ffed4f;
}

#page-container .border {
  border-top: 1px dashed #666;
  padding-top: 40px;
}

/*for SP*/
@media screen and (max-width: 768px) {
  #page-container {
    width: 100%;
    background-image: none;
  }

  #page-container .bg-yellow,
  #page-container .bg-purple,
  #page-container .bg-beige,
  #page-container .bg-white {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: calc(40 * (100vw / 375));
    padding: calc(40 * (100vw / 375)) 0;
  }

  #page-container .block {
    width: calc(335 * (100vw / 375));
    padding: calc(40 * (100vw / 375)) calc(20 * (100vw / 375));
    border-radius: calc(30 * (100vw / 375));
    gap: calc(40 * (100vw / 375));
  }

  #page-container .block .block-inner {
    gap: calc(20 * (100vw / 375));
  }

  #page-container a.button {
    position: relative;
    width: 100%;
    max-width: calc(335 * (100vw / 375));
    height: calc(50 * (100vw / 375));
    line-height: calc(50 * (100vw / 375));
    border-radius: calc(25 * (100vw / 375));
    padding: 0;
    font-size: 1.5rem;
  }

  #page-container a.button::after {
    position: absolute;
    content: "";
    width: calc(9 * (100vw / 375));
    height: calc(9 * (100vw / 375));
    top: calc(50% - 4px);
    right: calc(15 * (100vw / 375));
  }

  #page-container .border {
    border-top: 1px dashed #666;
    padding-top: calc(40 * (100vw / 375));
  }
}

/*----------------------------------------
h1
----------------------------------------*/
h1 {
  font-size: 1.2rem;
  text-align: center;
  background-color: #eee;
  padding: 5px 0;
}

/*for SP*/
@media screen and (max-width: 768px) {
  h1 {
    padding: calc(2 * (100vw / 375)) 0;
  }
}

/*----------------------------------------
.keyvisual
----------------------------------------*/
.keyvisual {
  width: 1200px;
  height: auto;
  margin: 0 auto;
}

/*for SP*/
@media screen and (max-width: 768px) {
  .keyvisual {
    width: 100%;
    height: auto;
    margin: 0 auto;
  }
}

/*----------------------------------------
.lead
----------------------------------------*/

.lead p {
  font-size: 2rem;
  line-height: 2.5;
  text-align: center;
}

.lead p span {
  font-size: 3.6rem;
  line-height: 1;
  color: #ef346f;
  font-weight: 800;
}

/*for SP*/
@media screen and (max-width: 768px) {
  .lead p {
    font-size: 1.6rem;
    line-height: 2;
    text-align: left;
  }

  .lead p span {
    font-size: 2.2rem;
    line-height: 1.5;
  }
}

/*----------------------------------------
.anchor
----------------------------------------*/

.anchor {
  width: 860px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.anchor li {
  width: 180px;
  height: auto;
}

.anchor li a {
  text-decoration: none;
}

.anchor li a span {
  display: block;
  text-align: center;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 20px;
}

/*for SP*/
@media screen and (max-width: 768px) {
  .anchor {
    width: 100%;
    flex-wrap: nowrap;
    flex-direction: column;
    gap: calc(20 * (100vw / 375));
  }

  .anchor li {
    width: calc(335 * (100vw / 375));
    border-top: 1px dashed #444;
    padding: calc(20 * (100vw / 375)) 0 0;
  }
}

/*----------------------------------------
.swap
----------------------------------------*/

.swap .title {
  width: 860px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 24px;
}

.swap .title h2 {
  font-size: 4.8rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: left;
}

.swap .title figure {
  width: 160px;
  height: 160px;
}

.swap .block-inner h3 {
  font-size: 3.2rem;
  line-height: 1.7;
  text-align: center;
}

.swap .block-inner h3 span {
  font-size: 2.4rem;
  text-align: center;
  display: block;
  color: #f8a53d;
}

/*for SP*/
@media screen and (max-width: 768px) {
  .swap .title {
    width: 100%;
    flex-wrap: nowrap;
    flex-direction: column-reverse;
    gap: calc(10 * (100vw / 375));
  }

  .swap .title h2 {
    font-size: 3.2rem;
    text-align: center;
  }

  .swap .title figure {
    width: calc(160 * (100vw / 375));
    height: calc(160 * (100vw / 375));
  }

  .swap .block-inner h3 {
    font-size: 2.4rem;
  }

  .swap .block-inner h3 span {
    font-size: 1.8rem;
  }
}

/*----------------------------------------
.risk
----------------------------------------*/

.risk .title {
  width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  align-items: center;
  gap: 24px;
}

.risk .title h2 {
  font-size: 4.8rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: left;
}

.risk .title figure {
  width: 160px;
  height: 160px;
}

.risk .block-inner h3 {
  font-size: 3.2rem;
  line-height: 1.7;
  text-align: center;
}

.risk .block-inner h3 span {
  font-size: 2.4rem;
  text-align: center;
  display: block;
  color: #e5316a;
}

.risk .block-inner p span {
  color: #ef346f;
}

/*for SP*/
@media screen and (max-width: 768px) {
  .risk .title {
    width: 100%;
    flex-wrap: nowrap;
    flex-direction: column-reverse;
    gap: calc(10 * (100vw / 375));
  }

  .risk .title h2 {
    font-size: 3.2rem;
    text-align: center;
  }

  .risk .title figure {
    width: calc(160 * (100vw / 375));
    height: calc(160 * (100vw / 375));
  }

  .risk .block-inner h3 {
    font-size: 2.4rem;
  }

  .risk .block-inner h3 span {
    font-size: 1.8rem;
  }
}

/*----------------------------------------
.recommend
----------------------------------------*/

.recommend .title {
  width: 860px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 24px;
}

.recommend .title h2 {
  font-size: 4.8rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: left;
}

.recommend .title figure {
  width: 160px;
  height: 160px;
}

.group-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.group-wrap .group {
  width: calc((100% - 32px) / 3);
  border-radius: 20px;
  text-align: center;
  justify-content: center;
  background-color: #fafafa;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 32px 16px;
}

.group-wrap .group h4 {
  font-size: 1.8rem;
  line-height: 1.4;
  text-align: center;
}

.group-wrap .group h4 span {
  display: block;
  font-size: 1.4rem;
  color: #8758e7;
}

.group-wrap .group img {
  width: 172px;
}

.group-wrap .group a.button {
  width: 100% !important;
  font-size: 1.4rem;
}

.recommend .block.campaign h3 {
  font-size: 3.2rem;
  line-height: 1.7;
  text-align: center;
}

.recommend .block.campaign a.banner {
  display: block;
  text-align: center;
  text-decoration: underline;
}

.recommend .block.campaign a.banner img {
  width: 500px;
}

/*for SP*/
@media screen and (max-width: 768px) {
  .recommend .title {
    width: 100%;
    flex-wrap: nowrap;
    flex-direction: column-reverse;
    gap: calc(10 * (100vw / 375));
  }

  .recommend .title h2 {
    font-size: 3.2rem;
    text-align: center;
  }

  .recommend .title figure {
    width: calc(160 * (100vw / 375));
    height: calc(160 * (100vw / 375));
  }

  .group-wrap {
    flex-direction: column;
    gap: calc(16 * (100vw / 375));
  }

  .group-wrap .group {
    width: 100%;
    border-radius: calc(20 * (100vw / 375));
    gap: calc(24 * (100vw / 375));
    padding: calc(32 * (100vw / 375)) calc(24 * (100vw / 375));
  }

  .group-wrap .group img {
    width: calc(168 * (100vw / 375));
  }

  .recommend .block.campaign h3 {
    font-size: 2.4rem;
  }

  .recommend .block.campaign a.banner img {
    width: 100%;
  }
}

/*----------------------------------------
.howto
----------------------------------------*/

.howto .title {
  width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  align-items: center;
  gap: 24px;
}

.howto .title h2 {
  font-size: 4.8rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: left;
}

.howto .title figure {
  width: 160px;
  height: 160px;
}

.howto .category-title {
  font-size: 3.2rem;
  line-height: 1.7;
  text-align: center;
}

.howto .block-inner h3 {
  font-size: 3.2rem;
  line-height: 1.7;
  text-align: center;
}

.howto .block-inner h3 span {
  font-size: 2.4rem;
  text-align: center;
  display: block;
  color: #019f11;
}

.howto .block-inner p {
  text-align: center;
}

.howto .block-inner ol {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  background-color: #fafafa;
  padding: 24px 0;
  gap: 20px;
}

.howto .block-inner ol li {
  width: 300px;
  text-align: center;
}

.howto .block-inner .col2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.howto .block-inner .col2 &gt; div {
  width: calc((100% - 20px) / 2);
  display: flex;
  flex-direction: column;
  background-color: #fafafa;
  border-radius: 20px;
  padding: 20px 30px;
  gap: 10px;
  text-align: center;
}

.howto .block-inner .col2 img {
  width: 100%;
}

/*for SP*/
@media screen and (max-width: 768px) {
  .howto .title {
    width: 100%;
    flex-wrap: nowrap;
    flex-direction: column-reverse;
    gap: calc(10 * (100vw / 375));
  }

  .howto .title h2 {
    font-size: 3.2rem;
    text-align: center;
  }

  .howto .title figure {
    width: calc(160 * (100vw / 375));
    height: calc(160 * (100vw / 375));
  }

  .howto .category-title {
    font-size: 2.4rem;
  }

  .howto .block-inner h3 {
    font-size: 2.4rem;
  }

  .howto .block-inner h3 span {
    font-size: 1.8rem;
  }

  .howto .block-inner p {
    text-align: left;
  }

  .howto .block-inner ol {
    flex-wrap: nowrap;
    flex-direction: column;
    padding: calc(20 * (100vw / 375)) 0;
    gap: calc(20 * (100vw / 375));
  }

  .howto .block-inner ol li {
    width: calc(255 * (100vw / 375));
    margin: 0 auto;
  }

  .howto .block-inner ol li p {
    text-align: center;
  }

  .howto .block-inner .col2 {
    flex-wrap: nowrap;
    flex-direction: column;
    gap: calc(20 * (100vw / 375));
  }

  .howto .block-inner .col2 &gt; div {
    width: 100%;
    border-radius: calc(20 * (100vw / 375));
    padding: calc(20 * (100vw / 375)) calc(10 * (100vw / 375));
    gap: calc(20 * (100vw / 375));
  }

  .howto .block-inner .col2 &gt; div p {
    text-align: center;
  }
}

/*.howto &gt; .confirmation*/
.confirmation h3 {
  font-size: 3.2rem;
  line-height: 1.7;
  text-align: center;
}

.confirmation p {
  text-align: center;
}

.confirmation figure {
  text-align: center;
}

.confirmation .tab {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}

.confirmation .tab-item {
  width: 50%;
  height: 70px;
  line-height: 70px;
  border-radius: 20px 20px 0 0;
  border-bottom: 4px solid #169aac;
  text-align: center;
  background-color: #eeeeee;
  transition: all 0.2s ease;
  cursor: pointer;
}

.confirmation .tab-item:hover {
  opacity: 0.7;
}

input[name="tab-type01-item"] {
  display: none;
}

.tab-cnt {
  display: none;
}

.tab-cnt ol {
  margin: 40px 0;
}

.tab-cnt ol li {
  list-style: decimal;
  list-style-position: inside;
  margin-bottom: 14px;
}

.tab-cnt ol li::marker {
  color: #169aac;
}

.tab-cnt div {
  background-color: #fafafa;
  border-radius: 20px;
  text-align: center;
  padding: 30px 0 0;
  margin: 20px auto 0;
}

#tab-01:checked ~ #tab-01-cnt,
#tab-02:checked ~ #tab-02-cnt {
  display: block;
  width: 100%;
}

.tab-type01 &gt; input:checked + .tab-item {
  color: #fff;
  background-color: #169aac;
}

/*for SP*/
@media screen and (max-width: 768px) {
  .confirmation h3 {
    font-size: 2.4rem;
  }

  .confirmation p {
    text-align: left;
  }

  .confirmation figure {
    width: calc(275 * (100vw / 375));
    margin: 0 auto;
  }

  .confirmation .tab {
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
  }

  .confirmation .tab-item {
    width: 50%;
    height: calc(40 * (100vw / 375));
    font-size: 1.3rem;
    line-height: calc(40 * (100vw / 375));
    border-radius: calc(10 * (100vw / 375)) calc(10 * (100vw / 375)) 0 0;
  }

  .tab-cnt ol {
    margin: calc(20 * (100vw / 375)) 0;
  }

  .tab-cnt ol li {
    margin-bottom: calc(14 * (100vw / 375));
    text-indent: -1em;
    padding-left: 1em;
  }

  .tab-cnt div {
    border-radius: calc(20 * (100vw / 375));
    padding: calc(20 * (100vw / 375)) 0 0;
    margin: calc(20 * (100vw / 375)) auto 0;
  }

  .tab-cnt p {
    text-align: center;
    line-height: 1.4;
  }
}

/*.howto &gt; .operation*/
.operation .title {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 16px;
  justify-content: center;
  align-items: center;
}

.operation .title h3 {
  font-size: 3.2rem;
  line-height: 1.7;
  text-align: center;
}

.operation .title figure {
  width: 48px;
  height: 56px;
}

.operation .block-inner {
  display: flex;
  flex-direction: row !important;
  align-items: center;
}

.operation .block-inner h4 {
  width: 50%;
  font-size: 2rem;
  line-height: 1.7;
  text-align: center;
}

.operation .block-inner p {
  width: 50%;
  text-align: left;
}

/*for SP*/
@media screen and (max-width: 768px) {
  .operation .title {
    width: 100%;
    flex-wrap: nowrap;
    flex-direction: column;
    gap: calc(10 * (100vw / 375));
  }

  .operation .title h3 {
    font-size: 3.2rem;
    line-height: 1.7;
    text-align: center;
  }

  .operation .title figure {
    width: calc(48 * (100vw / 375));
    height: calc(56 * (100vw / 375));
  }

  .operation .block-inner h4 {
    width: 100%;
  }

  .operation .block-inner {
    flex-direction: column !important;
  }

  .operation .block-inner p {
    width: 100%;
  }
}

/*.howto &gt; #readmore-01 */

#readmore-01 {
  text-align: center;
  margin-top: 20px;
}

#readmore-01 h4 {
  font-size: 2.4rem;
  text-align: center;
}

#readmore-01 .readmore-btn {
  cursor: pointer;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  width: 400px;
  height: 50px;
  line-height: 50px;
  border-radius: 25px;
  padding: 0 10px;
  margin: 20px auto 0;
  color: #444;
  background-color: #fff;
  border: 2px solid #444;
  text-decoration: none;
  text-align: center;
}

#readmore-01 .col2 {
  margin-top: 20px;
}

#readmore-01 .app {
  display: flex;
  flex-wrap: wrap;
}

#readmore-01 .app a {
  width: 50%;
}

#readmore-01 .download {
  display: flex;
  height: 100%;
  align-items: center;
}

#readmore-01 .download a.button {
  display: block;
  width: 100%;
  font-size: 1.4rem;
  background-color: #8758e7;
}

/*for SP*/
@media screen and (max-width: 768px) {
  #readmore-01 {
    text-align: center;
    margin-top: calc(20 * (100vw / 375));
  }

  #readmore-01 h4 {
    font-size: 2.4rem;
    text-align: center;
  }

  #readmore-01 .readmore-btn {
    width: 100%;
    height: calc(40 * (100vw / 375));
    line-height: calc(40 * (100vw / 375));
    border-radius: calc(20 * (100vw / 375));
    padding: 0 calc(10 * (100vw / 375));
    margin: calc(20 * (100vw / 375)) auto 0;
  }

  #readmore-01 .col2 {
    margin-top: calc(20 * (100vw / 375));
  }

  #readmore-01 .app {
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: calc(20 * (100vw / 375));
  }

  #readmore-01 .app a {
    width: 100%;
  }

  #readmore-01 .app a img {
    width: auto;
    height: calc(50 * (100vw / 375));
  }
}

/*----------------------------------------
.stock
----------------------------------------*/
.stock {
  text-align: center;
}

.stock p {
  width: 860px;
  margin: 0 auto;
}

.stock h2 {
  font-size: 5rem;
  line-height: 1.3;
  text-align: center;
}

.stock h2 span {
  display: block;
  font-size: 4rem;
  color: #ef346f;
}

.stock .block {
  background-color: #fafafa !important;
  text-align: left;
  padding: 80px 60px !important;
}

.stock .block h3 {
  font-size: 2.4rem;
  line-height: 1.4;
  text-align: center;
}

.stock .block p {
  width: 100%;
}

.stock .summary {
  font-size: 2rem;
  text-align: center;
}

/*for SP*/
@media screen and (max-width: 768px) {
  .stock {
    width: 100%;
    margin: 0 auto;
    padding: calc(60 * (100vw / 375)) calc(20 * (100vw / 375)) !important;
  }

  .stock p {
    width: 100%;
    text-align: left;
  }

  .stock h2 {
    font-size: 4rem;
  }

  .stock h2 span {
    font-size: 3.2rem;
  }

  .stock .block {
    padding: calc(40 * (100vw / 375)) calc(20 * (100vw / 375)) !important;
  }

  .stock .summary {
    font-size: 1.6rem;
    text-align: left;
  }
}

/*----------------------------------------
.contents
----------------------------------------*/
.contents {
  text-align: center;
}

.contents h2 {
  font-size: 2.4rem;
  text-align: center;
}

.contents ol {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 24px;
}

.contents ol li {
  width: 168px;
  font-size: 1.4rem;
  line-height: 1.7;
  text-align: left;
}

.contents ol li a {
  display: block;
  margin-bottom: 10px;
}

/*for SP*/
@media screen and (max-width: 768px) {
  .contents ol {
    width: calc(335 * (100vw / 375));
    margin: 0 auto;
    flex-direction: column;
    gap: calc(10 * (100vw / 375));
  }

  .contents ol li {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
  }

  .contents ol li a {
    width: 50%;
    margin-bottom: 0;
  }

  .contents ol li span {
    display: block;
    width: 50%;
    padding-left: calc(10 * (100vw / 375));
  }
}
</pre></body></html>